summaryrefslogtreecommitdiff
path: root/chart2/source/controller/dialogs/dlg_PropertyMapping.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'chart2/source/controller/dialogs/dlg_PropertyMapping.hxx')
-rw-r--r--chart2/source/controller/dialogs/dlg_PropertyMapping.hxx46
1 files changed, 0 insertions, 46 deletions
diff --git a/chart2/source/controller/dialogs/dlg_PropertyMapping.hxx b/chart2/source/controller/dialogs/dlg_PropertyMapping.hxx
deleted file mode 100644
index 0358a84dbfe2..000000000000
--- a/chart2/source/controller/dialogs/dlg_PropertyMapping.hxx
+++ /dev/null
@@ -1,46 +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/.
- */
-
-#ifndef INCLUDED_CHART2_SOURCE_CONTROLLER_DIALOGS_DLG_PROPERTYMAPPING_HXX
-#define INCLUDED_CHART2_SOURCE_CONTROLLER_DIALOGS_DLG_PROPERTYMAPPING_HXX
-
-#include <vcl/dialog.hxx>
-#include <vcl/button.hxx>
-#include <svtools/svtabbx.hxx>
-
-#include <com/sun/star/chart2/XChartType.hpp>
-
-namespace chart {
-
-class DialogModel;
-
-class PropertyMappingDlg : public ModalDialog
-{
-public:
-
- PropertyMappingDlg(Window* pParent, com::sun::star::uno::Reference<
- com::sun::star::chart2::XChartType > xChartType);
-
- OUString getSelectedEntry();
-
-private:
-
- DECL_LINK( OkBtnHdl, void* );
- DECL_LINK( CancelBtnHdl, void* );
-
- SvTabListBox* mpMappingTable;
- Button* mpBtnOk;
- Button* mpBtnCancel;
-};
-
-}
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */