diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:23:48 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:23:48 +0200 |
commit | ee1c8c5c25d25dfa42120125a8a45dc9831ee412 (patch) | |
tree | 67aa287157db954e0cadeee05b4aad331eb2ecf2 /ui/osx_dock.h | |
parent | 5.13 (diff) | |
download | FreeFileSync-ee1c8c5c25d25dfa42120125a8a45dc9831ee412.tar.gz FreeFileSync-ee1c8c5c25d25dfa42120125a8a45dc9831ee412.tar.bz2 FreeFileSync-ee1c8c5c25d25dfa42120125a8a45dc9831ee412.zip |
5.14
Diffstat (limited to 'ui/osx_dock.h')
-rw-r--r-- | ui/osx_dock.h | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/ui/osx_dock.h b/ui/osx_dock.h index a3ffa0c5..f2765780 100644 --- a/ui/osx_dock.h +++ b/ui/osx_dock.h @@ -7,23 +7,10 @@ #ifndef OSX_DOCK_837210847312534 #define OSX_DOCK_837210847312534 -#include <string> +#include <zen/osx_error.h> namespace osx { -class OsxError //Exception base class used to notify file/directory copy/delete errors -{ -public: - explicit OsxError(const std::string& message) : msg(message) {} - virtual ~OsxError() {} - - const std::string& toString() const { return msg; } - -private: - std::string msg; -}; - - void dockIconSetText(const char* str); //throw OsxError } |