forked from qt-creator/qt-creator
Fixes: - ICommand --> Command
Details: - Naming convention
This commit is contained in:
@@ -48,7 +48,7 @@ QT_END_NAMESPACE
|
||||
|
||||
namespace Core {
|
||||
|
||||
class ICommand;
|
||||
class Command;
|
||||
class IMode;
|
||||
|
||||
namespace Internal {
|
||||
@@ -70,7 +70,7 @@ public:
|
||||
IMode* currentMode() const;
|
||||
IMode* mode(const QString &id) const;
|
||||
|
||||
void addAction(ICommand *command, int priority, QMenu *menu = 0);
|
||||
void addAction(Command *command, int priority, QMenu *menu = 0);
|
||||
void addWidget(QWidget *widget);
|
||||
|
||||
signals:
|
||||
@@ -95,9 +95,9 @@ private:
|
||||
Internal::MainWindow *m_mainWindow;
|
||||
Internal::FancyTabWidget *m_modeStack;
|
||||
Internal::FancyActionBar *m_actionBar;
|
||||
QMap<ICommand*, int> m_actions;
|
||||
QMap<Command*, int> m_actions;
|
||||
QVector<IMode*> m_modes;
|
||||
QVector<ICommand*> m_modeShortcuts;
|
||||
QVector<Command*> m_modeShortcuts;
|
||||
QSignalMapper *m_signalMapper;
|
||||
QList<int> m_addedContexts;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user