summaryrefslogtreecommitdiff
path: root/ui/small_dlgs.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:14:37 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:14:37 +0200
commit8bf668665b107469086f16cb8ad23e47d479d2b4 (patch)
tree66a91ef06a8caa7cd6819dcbe1860693d3eda8d5 /ui/small_dlgs.h
parent3.21 (diff)
downloadFreeFileSync-8bf668665b107469086f16cb8ad23e47d479d2b4.tar.gz
FreeFileSync-8bf668665b107469086f16cb8ad23e47d479d2b4.tar.bz2
FreeFileSync-8bf668665b107469086f16cb8ad23e47d479d2b4.zip
4.0
Diffstat (limited to 'ui/small_dlgs.h')
-rw-r--r--ui/small_dlgs.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/ui/small_dlgs.h b/ui/small_dlgs.h
index 93c90445..ca497bfb 100644
--- a/ui/small_dlgs.h
+++ b/ui/small_dlgs.h
@@ -25,8 +25,6 @@ struct ReturnSmallDlg
void showAboutDialog();
-void showHelpDialog();
-
ReturnSmallDlg::ButtonPressed showFilterDialog(bool isGlobalFilter, FilterConfig& filter);
ReturnSmallDlg::ButtonPressed showDeleteDialog(
@@ -42,11 +40,11 @@ ReturnSmallDlg::ButtonPressed showSyncPreviewDlg(
const SyncStatistics& statistics,
bool& dontShowAgain);
-ReturnSmallDlg::ButtonPressed showCompareCfgDialog(
- CompareVariant& cmpVar,
- SymLinkHandling& handleSymlinks);
+ReturnSmallDlg::ButtonPressed showCompareCfgDialog(CompConfig& cmpConfig);
ReturnSmallDlg::ButtonPressed showGlobalSettingsDlg(xmlAccess::XmlGlobalSettings& globalSettings);
+
+ReturnSmallDlg::ButtonPressed showSelectTimespanDlg(Int64& timeFrom, Int64& timeTo);
}
#endif // SMALLDIALOGS_H_INCLUDED
bgstack15