Remove unused ContainerQuery constants.

Change-Id: Ib9f96f79d805c91e80fa5366c71e3e975ebabe90
This commit is contained in:
Matúš Kukan
2014-02-12 08:59:05 +01:00
parent d8db7f0f44
commit dae2b047f9
4 changed files with 0 additions and 75 deletions

View File

@@ -69,7 +69,6 @@ $(eval $(call gb_Library_add_exception_objects,fwk,\
framework/source/classes/fwktabwindow \
framework/source/classes/menumanager \
framework/source/classes/taskcreator \
framework/source/constant/containerquery \
framework/source/dispatch/closedispatcher \
framework/source/dispatch/dispatchinformationprovider \
framework/source/dispatch/dispatchprovider \

View File

@@ -1,32 +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 .
*/
#include <constant/containerquery.hxx>
namespace framework{
namespace constant{
const sal_Unicode ContainerQuery::SEPARATOR_PARAM = (sal_Unicode)':';
const sal_Unicode ContainerQuery::SEPARATOR_VALUE = (sal_Unicode)'=';
} // namespace constant
} // namespace framework
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View File

@@ -1,41 +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_FRAMEWORK_SOURCE_INC_CONSTANT_CONTAINERQUERY_HXX
#define INCLUDED_FRAMEWORK_SOURCE_INC_CONSTANT_CONTAINERQUERY_HXX
#include <sal/types.h>
namespace framework{
namespace constant{
struct ContainerQuery
{
public:
static const sal_Unicode SEPARATOR_PARAM;
static const sal_Unicode SEPARATOR_VALUE;
};
} // namespace constant
} // namespace framework
#endif // INCLUDED_FRAMEWORK_SOURCE_INC_CONSTANT_CONTAINERQUERY_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View File

@@ -22,7 +22,6 @@
#include <loadenv/targethelper.hxx>
#include <framework/framelistanalyzer.hxx>
#include <constant/containerquery.hxx>
#include <interaction/quietinteraction.hxx>
#include <threadhelp/writeguard.hxx>
#include <threadhelp/readguard.hxx>