summaryrefslogtreecommitdiff
path: root/shared/util.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:08:42 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:08:42 +0200
commitc32707148292d104c66276b43796d6057c8c7a5d (patch)
treebb83513f4aff24153e21a4ec92e34e4c27651b1f /shared/util.h
parent3.9 (diff)
downloadFreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.tar.gz
FreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.tar.bz2
FreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.zip
3.10
Diffstat (limited to 'shared/util.h')
-rw-r--r--shared/util.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/shared/util.h b/shared/util.h
index 5023c00b..2495838c 100644
--- a/shared/util.h
+++ b/shared/util.h
@@ -11,11 +11,10 @@
#include <wx/string.h>
#include <wx/longlong.h>
#include "../shared/global_func.h"
-
-class wxComboBox;
-class wxTextCtrl;
-class wxDirPickerCtrl;
-class wxScrolledWindow;
+#include <wx/textctrl.h>
+#include <wx/filepicker.h>
+#include <wx/combobox.h>
+#include <wx/scrolwin.h>
namespace ffs3
@@ -29,8 +28,6 @@ wxString formatPercentage(const wxLongLong& dividend, const wxLongLong& divisor)
template <class NumberType>
wxString numberToStringSep(NumberType number); //convert number to wxString including thousands separator
-void setDirectoryName(const wxString& dirname, wxTextCtrl* txtCtrl, wxDirPickerCtrl* dirPicker);
-void setDirectoryName(const wxString& dirname, wxComboBox* txtCtrl, wxDirPickerCtrl* dirPicker);
void scrollToBottom(wxScrolledWindow* scrWindow);
wxString utcTimeToLocalString(const wxLongLong& utcTime); //throw std::runtime_error
bgstack15