CScanEditor: Make use of Qt 5 signals and slots
This commit is contained in:
parent
8f9da5c5ed
commit
3118996cfa
|
@ -12,11 +12,11 @@ CScanEditor::CScanEditor(CScan* pScan, QWidget* pParent)
|
|||
AddUndoActions(mpUI->ToolBar);
|
||||
|
||||
QString WindowTitle = "%APP_FULL_NAME% - Scan Editor - %1[*]";
|
||||
WindowTitle = WindowTitle.arg( TO_QSTRING(mpScan->Entry()->CookedAssetPath(true).GetFileName()) );
|
||||
WindowTitle = WindowTitle.arg(TO_QSTRING(mpScan->Entry()->CookedAssetPath(true).GetFileName()));
|
||||
SET_WINDOWTITLE_APPVARS(WindowTitle);
|
||||
|
||||
connect( mpUI->ActionSave, SIGNAL(toggled(bool)), this, SLOT(Save()) );
|
||||
connect( mpUI->ActionSaveAndCook, SIGNAL(toggled(bool)), this, SLOT(SaveAndRepack()) );
|
||||
connect(mpUI->ActionSave, &QAction::toggled, this, &CScanEditor::Save);
|
||||
connect(mpUI->ActionSaveAndCook, &QAction::toggled, this, &CScanEditor::SaveAndRepack);
|
||||
}
|
||||
|
||||
CScanEditor::~CScanEditor() = default;
|
||||
|
|
Loading…
Reference in New Issue