summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-28 12:21:04 +0200
committerNoel Grandin <noel@peralex.com>2013-08-29 09:30:14 +0200
commit67b84a56841dcaefce211591b101143df6b1966e (patch)
tree6ffe2d3c8b8c5457d2972175ec3c9290aa5d19f5
parentbf0e8bda7a189cc0582273ee4e6567dd39cebd49 (diff)
remove SfxFilterDialog code, appears to be dead
only the header file exists Change-Id: If2c59dc40655482ac94c7f624fd31396dc62da16
-rw-r--r--sfx2/source/appl/app.cxx1
-rw-r--r--sfx2/source/inc/nfltdlg.hxx57
2 files changed, 0 insertions, 58 deletions
diff --git a/sfx2/source/appl/app.cxx b/sfx2/source/appl/app.cxx
index 3fd793cb9058..dc3895218943 100644
--- a/sfx2/source/appl/app.cxx
+++ b/sfx2/source/appl/app.cxx
@@ -75,7 +75,6 @@
#include <sfx2/docfile.hxx>
#include <sfx2/docfilt.hxx>
#include "fltfnc.hxx"
-#include "nfltdlg.hxx"
#include <sfx2/new.hxx>
#include <sfx2/bindings.hxx>
#include <sfx2/dispatch.hxx>
diff --git a/sfx2/source/inc/nfltdlg.hxx b/sfx2/source/inc/nfltdlg.hxx
deleted file mode 100644
index 72a8057e0d1d..000000000000
--- a/sfx2/source/inc/nfltdlg.hxx
+++ /dev/null
@@ -1,57 +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 _SFXNFLTDLG_HXX
-#define _SFXNFLTDLG_HXX
-
-
-#include <vcl/dialog.hxx>
-#include <vcl/lstbox.hxx>
-#include <vcl/button.hxx>
-#include <vcl/fixed.hxx>
-class SfxFilterMatcher;
-
-class SfxMedium;
-class SfxFilterDialog : public ModalDialog
-{
-private:
- FixedLine aMimeTypeFL;
- FixedText aMIMEType;
- FixedText aExtension;
- FixedLine aFilterFL;
- ListBox aListbox;
- OKButton aOkBtn;
- CancelButton aCancelBtn;
- HelpButton aHelpBtn;
-
- const SfxFilterMatcher& rMatcher;
-
- DECL_LINK( OkHdl, Control * );
-
-public:
- SfxFilterDialog( Window * pParent,
- SfxMedium* pMed,
- const SfxFilterMatcher &rMatcher,
- const String *pDefFilter, sal_Bool bShowConvert = sal_True );
-
- String GetSelectEntry() const;
-};
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */