summaryrefslogtreecommitdiff
path: root/library/icon_buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/icon_buffer.h')
-rw-r--r--library/icon_buffer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/icon_buffer.h b/library/icon_buffer.h
index 5ab2740c..87f0cd4a 100644
--- a/library/icon_buffer.h
+++ b/library/icon_buffer.h
@@ -17,7 +17,7 @@ namespace zen
class IconBuffer
{
public:
- static const wxIcon& getDirectoryIcon(); //one icon should be sufficient...
+ static const wxIcon& getDirectoryIcon(); //generic icons
static const wxIcon& getFileIcon(); //
static IconBuffer& getInstance();
@@ -35,7 +35,7 @@ private:
~IconBuffer();
struct Pimpl;
- std::auto_ptr<Pimpl> pimpl;
+ std::unique_ptr<Pimpl> pimpl;
};
}
bgstack15