diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2014-09-26 14:18:37 +0200 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2014-09-26 15:18:48 +0200 |
commit | d6d458671f1c79be3373271871518caa04ef2208 (patch) | |
tree | bc3a798b03852c883deb3986caaddc4d9e898f08 /svx/source/form | |
parent | 827ae65e8577e285b8ad30f4a81af087658e42fa (diff) |
rip out all remaining uses of svxform::OTypeConversionClient and remove it
It just wraps around dbtools, which is linked directly now.
Change-Id: If8d281962018a48a54858421e3490f5032658691
Diffstat (limited to 'svx/source/form')
-rw-r--r-- | svx/source/form/typeconversionclient.cxx | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/svx/source/form/typeconversionclient.cxx b/svx/source/form/typeconversionclient.cxx deleted file mode 100644 index 8914d4e140b7..000000000000 --- a/svx/source/form/typeconversionclient.cxx +++ /dev/null @@ -1,44 +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 "typeconversionclient.hxx" - - -namespace svxform -{ - - OTypeConversionClient::OTypeConversionClient() - { - } - - - bool OTypeConversionClient::ensureLoaded() const - { - if ( !ODbtoolsClient::ensureLoaded() ) - return false; - m_xTypeConversion = getFactory()->getTypeConversionHelper(); - return m_xTypeConversion.is(); - } - - -} // namespace svxform - - - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |