forked from qt-creator/qt-creator
Core: Cosmetics
* Remove redundant namespace qualifiers * Qt5-ify some signal/slot connections * Replace some using Core::Internal with explicit namespace scopes Change-Id: Id1aae05e2c6fc2992c2716e1f8f9e985c6e56122 Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
@@ -68,7 +68,7 @@ public:
|
||||
void saveSettings();
|
||||
void restoreSettings();
|
||||
|
||||
Core::Command *command(const QString &title) const;
|
||||
Command *command(const QString &title) const;
|
||||
|
||||
signals:
|
||||
void splitMe();
|
||||
@@ -100,7 +100,7 @@ protected:
|
||||
bool event(QEvent *event);
|
||||
|
||||
private:
|
||||
virtual const Core::Command *command(const QString &text) const = 0;
|
||||
virtual const Command *command(const QString &text) const = 0;
|
||||
};
|
||||
|
||||
|
||||
@@ -113,7 +113,7 @@ public:
|
||||
m_navSubWidget(navSubWidget) {}
|
||||
|
||||
private:
|
||||
virtual const Core::Command *command(const QString &text) const
|
||||
virtual const Command *command(const QString &text) const
|
||||
{ return m_navSubWidget->command(text); }
|
||||
|
||||
NavigationSubWidget *m_navSubWidget;
|
||||
|
||||
Reference in New Issue
Block a user