diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-02-03 09:42:56 +1100 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2014-02-03 16:45:19 +0000 |
commit | 0de3b50ff85f8a2ca1fed00c20a68cb51622dc71 (patch) | |
tree | 2000d27d6e6f4a6fad676f30fe9413ab0a556c3f /include/vcl/outdev.hxx | |
parent | fc5eefc903529d1c3548c680b3077eee4e2c7a73 (diff) |
fdo#74424 OutputDevice no longer inherits Resource
OutputDevice does not need to inherit Resource. Window now inherits
OutputDevice and Resource. This decouples OutputDevice from Resource,
which was unnecessary.
Change-Id: I9bc0d7ce65c026a8e38110e17fafdde9d8744392
Reviewed-on: https://gerrit.libreoffice.org/7785
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
Tested-by: Michael Meeks <michael.meeks@collabora.com>
Diffstat (limited to 'include/vcl/outdev.hxx')
-rw-r--r-- | include/vcl/outdev.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx index df78af3a4687..4f2243658c59 100644 --- a/include/vcl/outdev.hxx +++ b/include/vcl/outdev.hxx @@ -254,7 +254,7 @@ typedef ::std::vector< VCLXGraphics* > VCLXGraphicsList_impl; const char* ImplDbgCheckOutputDevice( const void* pObj ); -class VCL_DLLPUBLIC OutputDevice : public Resource +class VCL_DLLPUBLIC OutputDevice { friend class Application; friend class Bitmap; |