summaryrefslogtreecommitdiff
path: root/ui/batch_config.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 /ui/batch_config.h
parent3.9 (diff)
downloadFreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.tar.gz
FreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.tar.bz2
FreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.zip
3.10
Diffstat (limited to 'ui/batch_config.h')
-rw-r--r--ui/batch_config.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/ui/batch_config.h b/ui/batch_config.h
index b2ff0cc8..62645c78 100644
--- a/ui/batch_config.h
+++ b/ui/batch_config.h
@@ -13,11 +13,11 @@
namespace ffs3
{
-class DragDropOnDlg;
+class DirectoryName;
}
-class BatchFolderPairPanel;
-class FirstBatchFolderPairCfg;
+class DirectoryPairBatch;
+class DirectoryPairBatchFirst;
class BatchDialog: public BatchDlgGenerated
@@ -79,8 +79,8 @@ private:
xmlAccess::XmlBatchConfig getCurrentConfiguration() const;
- boost::shared_ptr<FirstBatchFolderPairCfg> firstFolderPair; //always bound!!!
- std::vector<BatchFolderPairPanel*> additionalFolderPairs;
+ boost::shared_ptr<DirectoryPairBatchFirst> firstFolderPair; //always bound!!!
+ std::vector<DirectoryPairBatch*> additionalFolderPairs;
//used when saving batch file
wxString proposedBatchFileName;
@@ -89,8 +89,7 @@ private:
std::auto_ptr<wxMenu> contextMenu;
- //add drag & drop support when selecting logfile directory
- std::auto_ptr<ffs3::DragDropOnDlg> dragDropOnLogfileDir;
+ std::auto_ptr<ffs3::DirectoryName> logfileDir;
};
#endif // BATCHCONFIG_H_INCLUDED
bgstack15