diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-01-19 21:06:33 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-01-20 10:11:59 +0000 |
commit | 8f29ee6c293a6d72b3cf0b6b735c90ba91fc5607 (patch) | |
tree | 5cf827caee6eae504a41b49e328fee39cef9376c /include | |
parent | 60792b45dd5038d570c7880b7e86b666424f765d (diff) |
Images no longer loaded from resource files
Change-Id: I7155a2c8280b9f511402b908f06470dec419b336
Diffstat (limited to 'include')
-rw-r--r-- | include/tools/rc.h | 8 | ||||
-rw-r--r-- | include/tools/rcid.h | 1 | ||||
-rw-r--r-- | include/vcl/image.hxx | 1 |
3 files changed, 0 insertions, 10 deletions
diff --git a/include/tools/rc.h b/include/tools/rc.h index 9ca1e8fa0af8..84bb8e255972 100644 --- a/include/tools/rc.h +++ b/include/tools/rc.h @@ -50,14 +50,6 @@ namespace o3tl { template<> struct typed_flags<RscMenuItem> : is_typed_flags<RscMenuItem, 0xd6f> {}; } -// For "Image": -enum class RscImageFlags { - ImageBitmap = 0x01, -}; -namespace o3tl { - template<> struct typed_flags<RscImageFlags> : is_typed_flags<RscImageFlags, 0x01> {}; -} - #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/include/tools/rcid.h b/include/tools/rcid.h index d30dde87c845..a86667f8a17b 100644 --- a/include/tools/rcid.h +++ b/include/tools/rcid.h @@ -38,7 +38,6 @@ #define RSC_BITMAP (RSC_NOTYPE + 0x13) #define RSC_MENU (RSC_NOTYPE + 0x1c) #define RSC_MENUITEM (RSC_NOTYPE + 0x1d) // only used internally -#define RSC_IMAGE (RSC_NOTYPE + 0x23) #define RSC_STRINGARRAY (RSC_NOTYPE + 0x79) diff --git a/include/vcl/image.hxx b/include/vcl/image.hxx index 519058a2dc64..88a0c045376e 100644 --- a/include/vcl/image.hxx +++ b/include/vcl/image.hxx @@ -56,7 +56,6 @@ class VCL_DLLPUBLIC Image public: Image(); - explicit Image( const ResId& rResId ); explicit Image( const BitmapEx& rBitmapEx ); explicit Image( const Bitmap& rBitmap ); Image( const Bitmap& rBitmap, const Color& rColor ); |