forked from qt-creator/qt-creator
BookmarksPlugin: initialize members in ctor
Change-Id: Id5aa974e24baf639dd75979193c6bd6f4c86d2b6 Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
@@ -56,9 +56,16 @@ using namespace TextEditor;
|
|||||||
namespace Bookmarks {
|
namespace Bookmarks {
|
||||||
namespace Internal {
|
namespace Internal {
|
||||||
|
|
||||||
BookmarksPlugin::BookmarksPlugin()
|
BookmarksPlugin::BookmarksPlugin() :
|
||||||
: m_bookmarkManager(0),
|
m_bookmarkManager(0),
|
||||||
m_bookmarkMarginActionLineNumber(0)
|
m_toggleAction(0),
|
||||||
|
m_prevAction(0),
|
||||||
|
m_nextAction(0),
|
||||||
|
m_docPrevAction(0),
|
||||||
|
m_docNextAction(0),
|
||||||
|
m_editBookmarkAction(0),
|
||||||
|
m_bookmarkMarginAction(0),
|
||||||
|
m_bookmarkMarginActionLineNumber(0)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user