diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2017-05-26 22:37:06 +0200 |
---|---|---|
committer | Pranav Kant <pranavk@collabora.co.uk> | 2017-10-02 10:54:00 +0530 |
commit | d663eabbebad69dd64e5d9b05c60375304b28573 (patch) | |
tree | 38c49585b5ff32867592a1d327166b36fbbe8f41 | |
parent | 901ee5207599d683b0f82c954f905c04fd8b676f (diff) |
move ITileRenderable implementation to own file
Change-Id: Ib05ecf5f92e0ae4adf99c4dd10d60e730a95cf45
-rw-r--r-- | vcl/Library_vcl.mk | 1 | ||||
-rw-r--r-- | vcl/source/app/ITiledRenderable.cxx | 22 | ||||
-rw-r--r-- | vcl/source/gdi/virdev.cxx | 10 |
3 files changed, 23 insertions, 10 deletions
diff --git a/vcl/Library_vcl.mk b/vcl/Library_vcl.mk index 5d62542e8b13..4c636accce92 100644 --- a/vcl/Library_vcl.mk +++ b/vcl/Library_vcl.mk @@ -329,6 +329,7 @@ $(eval $(call gb_Library_add_exception_objects,vcl,\ vcl/source/app/IconThemeInfo \ vcl/source/app/IconThemeScanner \ vcl/source/app/IconThemeSelector \ + vcl/source/app/ITiledRenderable \ vcl/source/app/sound \ vcl/source/app/stdtext \ vcl/source/app/svapp \ diff --git a/vcl/source/app/ITiledRenderable.cxx b/vcl/source/app/ITiledRenderable.cxx new file mode 100644 index 000000000000..3eb5dcd2da6e --- /dev/null +++ b/vcl/source/app/ITiledRenderable.cxx @@ -0,0 +1,22 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + */ + +#include <vcl/ITiledRenderable.hxx> + +namespace vcl +{ + +ITiledRenderable::~ITiledRenderable() +{ +} + +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/vcl/source/gdi/virdev.cxx b/vcl/source/gdi/virdev.cxx index 52bb9f566873..974533d9ea13 100644 --- a/vcl/source/gdi/virdev.cxx +++ b/vcl/source/gdi/virdev.cxx @@ -23,18 +23,8 @@ #include "outdev.h" #include "PhysicalFontCollection.hxx" #include "svdata.hxx" - #include <vcl/ITiledRenderable.hxx> -namespace vcl -{ - -ITiledRenderable::~ITiledRenderable() -{ -} - -} - using namespace ::com::sun::star::uno; bool VirtualDevice::AcquireGraphics() const |