summaryrefslogtreecommitdiff
path: root/lib/osx_file_icon.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:24:59 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:24:59 +0200
commita1c91f4695e208d5a8f80dc37b1818169b7829ff (patch)
tree52f5134376d17c99b6c9e53133a2eb5cf171377c /lib/osx_file_icon.h
parent5.16 (diff)
downloadFreeFileSync-a1c91f4695e208d5a8f80dc37b1818169b7829ff.tar.gz
FreeFileSync-a1c91f4695e208d5a8f80dc37b1818169b7829ff.tar.bz2
FreeFileSync-a1c91f4695e208d5a8f80dc37b1818169b7829ff.zip
5.17
Diffstat (limited to 'lib/osx_file_icon.h')
-rw-r--r--lib/osx_file_icon.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/osx_file_icon.h b/lib/osx_file_icon.h
index e9b17988..5edfd740 100644
--- a/lib/osx_file_icon.h
+++ b/lib/osx_file_icon.h
@@ -8,7 +8,7 @@
#define OSX_FILE_ICON_8427508422345342
#include <vector>
-#include <zen/osx_error.h>
+#include <zen/sys_error.h>
namespace osx
{
@@ -27,10 +27,10 @@ private:
ImageData& operator=(const ImageData&);
};
-ImageData getThumbnail(const char* filename, int requestedSize); //throw OsxError
-ImageData getFileIcon (const char* filename, int requestedSize); //throw OsxError
-ImageData getDefaultFileIcon (int requestedSize); //throw OsxError
-ImageData getDefaultFolderIcon(int requestedSize); //throw OsxError
+ImageData getThumbnail(const char* filename, int requestedSize); //throw SysError
+ImageData getFileIcon (const char* filename, int requestedSize); //throw SysError
+ImageData getDefaultFileIcon (int requestedSize); //throw SysError
+ImageData getDefaultFolderIcon(int requestedSize); //throw SysError
}
#endif //OSX_FILE_ICON_8427508422345342
bgstack15