diff options
-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 |