diff options
Diffstat (limited to 'win/rfb_win32/IconInfo.h')
-rw-r--r-- | win/rfb_win32/IconInfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/rfb_win32/IconInfo.h b/win/rfb_win32/IconInfo.h index 991a5a13..6348e7b2 100644 --- a/win/rfb_win32/IconInfo.h +++ b/win/rfb_win32/IconInfo.h @@ -20,7 +20,7 @@ #define __RFB_WIN32_ICONINFO_H__ #include <windows.h> -#include <rdr/Exception.h> +#include <core/Exception.h> namespace rfb { namespace win32 { @@ -28,7 +28,7 @@ namespace rfb { struct IconInfo : public ICONINFO { IconInfo(HICON icon) { if (!GetIconInfo(icon, this)) - throw rdr::win32_error("GetIconInfo() failed", GetLastError()); + throw core::win32_error("GetIconInfo() failed", GetLastError()); } ~IconInfo() { if (hbmColor) |