summaryrefslogtreecommitdiff
path: root/ui/main_dlg.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/main_dlg.h')
-rw-r--r--ui/main_dlg.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/main_dlg.h b/ui/main_dlg.h
index 6c0c6974..b9f3fe0d 100644
--- a/ui/main_dlg.h
+++ b/ui/main_dlg.h
@@ -106,7 +106,7 @@ private:
void deleteSelectedFiles(const std::vector<zen::FileSystemObject*>& selectionLeft,
const std::vector<zen::FileSystemObject*>& selectionRight);
- void openExternalApplication(const zen::FileSystemObject* fsObj, bool leftSide, const wxString& commandline); //fsObj is optional!
+ void openExternalApplication(const wxString& commandline, const zen::FileSystemObject* fsObj, size_t compPos); //fsObj may be nullptr
//work to be done in idle time
void OnIdleEvent(wxEvent& event);
@@ -251,9 +251,9 @@ private:
bool processingGlobalKeyEvent; //indicator to notify recursion in OnGlobalKeyEvent()
- bool syncPreviewEnabled; //toggle to display configuration preview instead of comparison result
+ bool showSyncAction_; //toggle to display configuration preview instead of comparison result
//use this methods when changing values!
- void enablePreview(bool value);
+ void showSyncAction(bool value);
wxAuiManager auiMgr; //implement dockable GUI design
bgstack15