diff options
Diffstat (limited to 'ui/folder_pair.h')
-rw-r--r-- | ui/folder_pair.h | 4 |
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; }; } |