diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-06-05 16:31:17 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-06-06 09:54:40 +0200 |
commit | d8b0774eb1cd665c4e93595d37b2b33025fb0840 (patch) | |
tree | acaa07acffe2d00a3de62ff0a70c1735ecafa370 | |
parent | e4be4c2641c0072af25cf1a2b2abc3b1cffa1078 (diff) |
drop never used dialog
Change-Id: I2474887914ec74e62667fd6f68ecb57bad89ca0d
Reviewed-on: https://gerrit.libreoffice.org/73561
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | dbaccess/source/core/inc/warndlg.hxx | 25 | ||||
-rw-r--r-- | dbaccess/source/core/misc/warndlg.cxx | 20 |
2 files changed, 0 insertions, 45 deletions
diff --git a/dbaccess/source/core/inc/warndlg.hxx b/dbaccess/source/core/inc/warndlg.hxx deleted file mode 100644 index 3e0935bd732c..000000000000 --- a/dbaccess/source/core/inc/warndlg.hxx +++ /dev/null @@ -1,25 +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_DBACCESS_SOURCE_CORE_INC_WARNDLG_HXX -#define INCLUDED_DBACCESS_SOURCE_CORE_INC_WARNDLG_HXX - -#include <vcl/weld.hxx> - -namespace dbaccess -{ -class MigrationWarnDialog : public weld::MessageDialogController -{ -public: - MigrationWarnDialog(weld::Window* pParent); -}; -} - -#endif // INCLUDED_DBACCESS_SOURCE_CORE_INC_WARNDLG_HXX - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/dbaccess/source/core/misc/warndlg.cxx b/dbaccess/source/core/misc/warndlg.cxx deleted file mode 100644 index 985c892eb9fa..000000000000 --- a/dbaccess/source/core/misc/warndlg.cxx +++ /dev/null @@ -1,20 +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/. - */ - -#include <warndlg.hxx> - -namespace dbaccess -{ -MigrationWarnDialog::MigrationWarnDialog(weld::Window* pParent) - : MessageDialogController(pParent, "TODOUIfile", "MigrationWarnDialog", "ask") -{ -} -} - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |