Skip to content
Snippets Groups Projects
Commit 348888cb authored by dt's avatar dt
Browse files

Fixes uninitialized member

parent 8558f8ad
No related branches found
No related tags found
No related merge requests found
...@@ -55,7 +55,8 @@ using namespace TextEditor; ...@@ -55,7 +55,8 @@ using namespace TextEditor;
BookmarksPlugin *BookmarksPlugin::m_instance = 0; BookmarksPlugin *BookmarksPlugin::m_instance = 0;
BookmarksPlugin::BookmarksPlugin() BookmarksPlugin::BookmarksPlugin()
: m_bookmarkManager(0) : m_bookmarkManager(0),
m_bookmarkMarginActionLineNumber(0)
{ {
m_instance = this; m_instance = this;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment