summaryrefslogtreecommitdiff
path: root/ui/SmallDialogs.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 16:58:10 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 16:58:10 +0200
commitfefe20351d0720683990b666584b6879c90bd37d (patch)
tree8ab90520ae2123ac84293b0f9cec006317e5fc01 /ui/SmallDialogs.h
parent1.18 (diff)
downloadFreeFileSync-fefe20351d0720683990b666584b6879c90bd37d.tar.gz
FreeFileSync-fefe20351d0720683990b666584b6879c90bd37d.tar.bz2
FreeFileSync-fefe20351d0720683990b666584b6879c90bd37d.zip
1.19
Diffstat (limited to 'ui/SmallDialogs.h')
-rw-r--r--ui/SmallDialogs.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/ui/SmallDialogs.h b/ui/SmallDialogs.h
index a2d2c752..2c3e89d2 100644
--- a/ui/SmallDialogs.h
+++ b/ui/SmallDialogs.h
@@ -165,7 +165,7 @@ private:
class CustomizeColsDlg : public CustomizeColsDlgGenerated
{
public:
- CustomizeColsDlg(wxWindow* window, xmlAccess::ColumnAttributes& attr);
+ CustomizeColsDlg(wxWindow* window, xmlAccess::ColumnAttributes& attr, bool& showFileIcons);
~CustomizeColsDlg() {}
enum
@@ -183,6 +183,7 @@ private:
void OnMoveDown(wxCommandEvent& event);
xmlAccess::ColumnAttributes& output;
+ bool& m_showFileIcons;
};
@@ -255,7 +256,7 @@ public:
FINISHED_WITH_ERROR,
PAUSE,
SCANNING,
- COMPARING,
+ COMPARING_CONTENT,
SYNCHRONIZING
};
bgstack15