summaryrefslogtreecommitdiffstats
path: root/vcl/workben/mtfdemo.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/workben/mtfdemo.cxx')
-rw-r--r--vcl/workben/mtfdemo.cxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/vcl/workben/mtfdemo.cxx b/vcl/workben/mtfdemo.cxx
index 0ee726e051f8..ea987186ceb2 100644
--- a/vcl/workben/mtfdemo.cxx
+++ b/vcl/workben/mtfdemo.cxx
@@ -32,6 +32,8 @@
using namespace css;
+namespace {
+
class DemoMtfWin : public WorkWindow
{
GDIMetaFile maMtf;
@@ -55,6 +57,8 @@ public:
virtual void Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect) override;
};
+}
+
void DemoMtfWin::Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect)
{
maMtf.Play(this, maMtf.GetActionSize());
@@ -62,6 +66,8 @@ void DemoMtfWin::Paint(vcl::RenderContext& rRenderContext, const tools::Rectangl
WorkWindow::Paint(rRenderContext, rRect);
}
+namespace {
+
class DemoMtfApp : public Application
{
VclPtr<DemoMtfWin> mpWin;
@@ -149,6 +155,7 @@ private:
};
+}
void vclmain::createApplication()
{