summaryrefslogtreecommitdiff
path: root/ui/small_dlgs.h
diff options
context:
space:
mode:
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