summaryrefslogtreecommitdiff
path: root/cui/source/inc/ControlFocusHelper.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-05-06 09:55:21 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-05-06 09:55:42 +0200
commit19b91e0d76df10646cd261431c7847e3447e08b1 (patch)
tree8570a55ce1faf716ebad680545d017201434e1a1 /cui/source/inc/ControlFocusHelper.hxx
parent9f68d0a24bd0b85e325b3983a19331550bbdc1b1 (diff)
Remove unused SvxControlFocusHelper
Change-Id: I3bdadb02918bf109e7e93ea0c7c709f018caed4a
Diffstat (limited to 'cui/source/inc/ControlFocusHelper.hxx')
-rw-r--r--cui/source/inc/ControlFocusHelper.hxx44
1 files changed, 0 insertions, 44 deletions
diff --git a/cui/source/inc/ControlFocusHelper.hxx b/cui/source/inc/ControlFocusHelper.hxx
deleted file mode 100644
index 6530f3cf6740..000000000000
--- a/cui/source/inc/ControlFocusHelper.hxx
+++ /dev/null
@@ -1,44 +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_CUI_SOURCE_INC_CONTROLFOCUSHELPER_HXX
-#define INCLUDED_CUI_SOURCE_INC_CONTROLFOCUSHELPER_HXX
-
-#include <vcl/ctrl.hxx>
-
-// class SvxControlFocusHelper ---------------------------------------------
-
-class SvxControlFocusHelper : public Control
-{
-private:
- VclPtr<Control> m_pFocusCtrl;
-
-public:
- SvxControlFocusHelper( vcl::Window* pParent, const ResId& rId ) :
- Control( pParent, rId ), m_pFocusCtrl( NULL ) {}
- virtual ~SvxControlFocusHelper();
- virtual void dispose() SAL_OVERRIDE;
-
- void SetFocusControl( Control* pCtrl ) { m_pFocusCtrl = pCtrl; }
-
- virtual bool Notify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
-};
-
-#endif // INCLUDED_CUI_SOURCE_INC_CONTROLFOCUSHELPER_HXX
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */