summaryrefslogtreecommitdiff
path: root/ui/folder_pair.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:12:17 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:12:17 +0200
commitb654dbfa5f3e4a4d02f72023f7c5895635aa6396 (patch)
tree8c1dfe7f638c0fc7afc1d08bc2fc0fd0f8646e5e /ui/folder_pair.h
parent3.17 (diff)
downloadFreeFileSync-b654dbfa5f3e4a4d02f72023f7c5895635aa6396.tar.gz
FreeFileSync-b654dbfa5f3e4a4d02f72023f7c5895635aa6396.tar.bz2
FreeFileSync-b654dbfa5f3e4a4d02f72023f7c5895635aa6396.zip
3.18
Diffstat (limited to 'ui/folder_pair.h')
-rw-r--r--ui/folder_pair.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/folder_pair.h b/ui/folder_pair.h
index d72651c8..770aceb3 100644
--- a/ui/folder_pair.h
+++ b/ui/folder_pair.h
@@ -26,7 +26,7 @@ template <class GuiPanel>
class FolderPairPanelBasic : private wxEvtHandler
{
public:
- typedef boost::shared_ptr<const zen::AlternateSyncConfig> AltSyncCfgPtr;
+ typedef std::shared_ptr<const zen::AlternateSyncConfig> AltSyncCfgPtr;
AltSyncCfgPtr getAltSyncConfig() const
{
@@ -177,7 +177,7 @@ private:
AltSyncCfgPtr altSyncConfig; //optional: present if non-NULL
FilterConfig localFilter;
- std::auto_ptr<wxMenu> contextMenu;
+ std::unique_ptr<wxMenu> contextMenu;
};
}
bgstack15