summaryrefslogtreecommitdiff
path: root/ui/main_dlg.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:20:07 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:20:07 +0200
commit88a8b528e20013c0aa3cc6bcd9659b0b5ddd9170 (patch)
treec6c5babb49b90293380106b81ae5c446959ac70f /ui/main_dlg.h
parent5.3 (diff)
downloadFreeFileSync-88a8b528e20013c0aa3cc6bcd9659b0b5ddd9170.tar.gz
FreeFileSync-88a8b528e20013c0aa3cc6bcd9659b0b5ddd9170.tar.bz2
FreeFileSync-88a8b528e20013c0aa3cc6bcd9659b0b5ddd9170.zip
5.4
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