summaryrefslogtreecommitdiff
path: root/include/svx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-08-27 08:46:28 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-08-27 10:18:31 +0100
commit53617c8651274e581cc1b55c9705c54e03f93879 (patch)
treee47a5e84d3b38344b1f845233398a10150949145 /include/svx
parentf52b92f1c55657fd737c4d92010ca54e65c387d3 (diff)
callcatcher: update unused code
Change-Id: Idaed255e4f004ad555ccbd6ba9dc29bf522d3c5f
Diffstat (limited to 'include/svx')
-rw-r--r--include/svx/galbrws.hxx74
1 files changed, 0 insertions, 74 deletions
diff --git a/include/svx/galbrws.hxx b/include/svx/galbrws.hxx
deleted file mode 100644
index a4de714f4cd5..000000000000
--- a/include/svx/galbrws.hxx
+++ /dev/null
@@ -1,74 +0,0 @@
-/* -*- 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/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-#ifndef INCLUDED_SVX_GALBRWS_HXX
-#define INCLUDED_SVX_GALBRWS_HXX
-
-#include <sfx2/ctrlitem.hxx>
-#include <sfx2/dockwin.hxx>
-#include <vcl/graph.hxx>
-#include <tools/urlobj.hxx>
-#include <svx/svxdllapi.h>
-
-
-class FmFormModel;
-class GalleryBrowser1;
-class GalleryBrowser2;
-class GallerySplitter;
-class Gallery;
-
-class SVX_DLLPUBLIC GalleryBrowser : public SfxDockingWindow
-{
- friend class GalleryBrowser1;
- friend class GalleryBrowser2;
- friend class GallerySplitter;
- using Window::KeyInput;
-
-private:
- Size maLastSize;
- GallerySplitter* mpSplitter;
- GalleryBrowser1* mpBrowser1;
- GalleryBrowser2* mpBrowser2;
- Gallery* mpGallery;
-
- /// bitfield
- void InitSettings();
-
- virtual bool Close() SAL_OVERRIDE;
- virtual void Resize() SAL_OVERRIDE;
- virtual void GetFocus() SAL_OVERRIDE;
-
- DECL_LINK( SplitHdl, void* );
-
-protected:
-
- void ThemeSelectionHasChanged();
-
-public:
-
- GalleryBrowser( SfxBindings* pBindings, SfxChildWindow* pCW,
- Window* pParent, const ResId& rResId );
- virtual ~GalleryBrowser();
-
- bool KeyInput( const KeyEvent& rKEvt, Window* pWindow );
-};
-
-#endif // INCLUDED_SVX_GALBRWS_HXX
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */