summaryrefslogtreecommitdiff
path: root/library/icon_buffer.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:12:46 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:12:46 +0200
commitb338e29fd3eaf700f8c8360aa0310048ba941d54 (patch)
tree122f8ef3790d12cd10275ef7453a9e8053322d78 /library/icon_buffer.h
parent3.18 (diff)
downloadFreeFileSync-b338e29fd3eaf700f8c8360aa0310048ba941d54.tar.gz
FreeFileSync-b338e29fd3eaf700f8c8360aa0310048ba941d54.tar.bz2
FreeFileSync-b338e29fd3eaf700f8c8360aa0310048ba941d54.zip
3.19
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