summaryrefslogtreecommitdiff
path: root/RealtimeSync/mainDialog.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:04:59 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:04:59 +0200
commitf570e2f2685aa43aa518c2f8578391c1847cddbe (patch)
treeb9376b3a7e807c5e0c4cf3d5615c14034d9675d6 /RealtimeSync/mainDialog.h
parent3.2 (diff)
downloadFreeFileSync-f570e2f2685aa43aa518c2f8578391c1847cddbe.tar.gz
FreeFileSync-f570e2f2685aa43aa518c2f8578391c1847cddbe.tar.bz2
FreeFileSync-f570e2f2685aa43aa518c2f8578391c1847cddbe.zip
3.3
Diffstat (limited to 'RealtimeSync/mainDialog.h')
-rw-r--r--RealtimeSync/mainDialog.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/RealtimeSync/mainDialog.h b/RealtimeSync/mainDialog.h
index 8447d269..8a5e87bf 100644
--- a/RealtimeSync/mainDialog.h
+++ b/RealtimeSync/mainDialog.h
@@ -16,7 +16,7 @@
namespace xmlAccess
{
- struct XmlRealConfig;
+struct XmlRealConfig;
}
@@ -24,8 +24,8 @@ class FolderPanel : public FolderGenerated
{
public:
FolderPanel(wxWindow* parent) :
- FolderGenerated(parent),
- dragDropOnFolder(new FreeFileSync::DragDropOnDlg(this, m_dirPicker, m_txtCtrlDirectory)) {}
+ FolderGenerated(parent),
+ dragDropOnFolder(new FreeFileSync::DragDropOnDlg(this, m_dirPicker, m_txtCtrlDirectory)) {}
private:
//support for drag and drop
bgstack15