summaryrefslogtreecommitdiff
path: root/forms/source/inc
diff options
context:
space:
mode:
authorSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2016-04-15 13:38:17 +0200
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2016-04-15 13:01:15 +0000
commit7ae232623a423b078dd54d06e5fe52e89994b391 (patch)
treeb5f9ded5554be23b46f15c751a52ca07b6a67bb2 /forms/source/inc
parent9a081c5cb56c834e7b63ee1ad5b88f11119891ff (diff)
tdf#95845 Use CommandInfoProvider in forms
Change-Id: I697f8c442cc4db7b38601c32fb71e0201f145354 Reviewed-on: https://gerrit.libreoffice.org/24106 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'forms/source/inc')
-rw-r--r--forms/source/inc/commanddescriptionprovider.hxx60
1 files changed, 0 insertions, 60 deletions
diff --git a/forms/source/inc/commanddescriptionprovider.hxx b/forms/source/inc/commanddescriptionprovider.hxx
deleted file mode 100644
index cff411e3dcc0..000000000000
--- a/forms/source/inc/commanddescriptionprovider.hxx
+++ /dev/null
@@ -1,60 +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_FORMS_SOURCE_INC_COMMANDDESCRIPTIONPROVIDER_HXX
-#define INCLUDED_FORMS_SOURCE_INC_COMMANDDESCRIPTIONPROVIDER_HXX
-
-#include <com/sun/star/frame/XModel.hpp>
-#include <com/sun/star/uno/XComponentContext.hpp>
-
-#include <memory>
-
-
-namespace frm
-{
-
-
- //= ICommandDescriptionProvider
-
- class SAL_NO_VTABLE ICommandDescriptionProvider
- {
- public:
- virtual OUString getCommandDescription( const OUString& _rCommandURL ) const = 0;
-
- virtual ~ICommandDescriptionProvider() { }
- };
-
- typedef std::shared_ptr< const ICommandDescriptionProvider > PCommandDescriptionProvider;
-
-
- //= factory
-
- PCommandDescriptionProvider
- createDocumentCommandDescriptionProvider(
- const css::uno::Reference< css::uno::XComponentContext >& _rxContext,
- const css::uno::Reference< css::frame::XModel >& _rxDocument
- );
-
-
-} // namespace frm
-
-
-#endif // INCLUDED_FORMS_SOURCE_INC_COMMANDDESCRIPTIONPROVIDER_HXX
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */