summaryrefslogtreecommitdiffstats
path: root/framework/source/fwi
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-04-06 19:05:49 +0300
committerTor Lillqvist <tml@collabora.com>2014-04-06 19:37:48 +0300
commit951ed199f1a47c02dad3dc899b9804b4574a151d (patch)
treed8f82a3afa345351ce6a4a206424c6f2bd2aed46 /framework/source/fwi
parentBin empty @seealso, @param, @return and @onerror metacomments (diff)
downloadcore-951ed199f1a47c02dad3dc899b9804b4574a151d.tar.gz
core-951ed199f1a47c02dad3dc899b9804b4574a151d.zip
Kill superfluous vertical whitespace
Change-Id: Ia1bb2b40c74efb17e655dd6f00d7ba48c16c65ae
Diffstat (limited to 'framework/source/fwi')
-rw-r--r--framework/source/fwi/classes/converter.cxx2
-rw-r--r--framework/source/fwi/classes/propertysethelper.cxx20
-rw-r--r--framework/source/fwi/helper/mischelper.cxx7
-rw-r--r--framework/source/fwi/helper/networkdomain.cxx15
-rw-r--r--framework/source/fwi/jobs/configaccess.cxx5
-rw-r--r--framework/source/fwi/uielement/constitemcontainer.cxx1
-rw-r--r--framework/source/fwi/uielement/itemcontainer.cxx3
7 files changed, 0 insertions, 53 deletions
diff --git a/framework/source/fwi/classes/converter.cxx b/framework/source/fwi/classes/converter.cxx
index ff3560425f43..4799f083ced0 100644
--- a/framework/source/fwi/classes/converter.cxx
+++ b/framework/source/fwi/classes/converter.cxx
@@ -22,7 +22,6 @@
namespace framework{
-
/**
* converts a sequence of PropertyValue to a sequence of NamedValue.
*/
@@ -38,7 +37,6 @@ css::uno::Sequence< css::beans::NamedValue > Converter::convert_seqPropVal2seqNa
return lDestination;
}
-
/**
* converts a sequence of unicode strings into a vector of such items
*/
diff --git a/framework/source/fwi/classes/propertysethelper.cxx b/framework/source/fwi/classes/propertysethelper.cxx
index 338e0036147b..4a0600be050c 100644
--- a/framework/source/fwi/classes/propertysethelper.cxx
+++ b/framework/source/fwi/classes/propertysethelper.cxx
@@ -26,8 +26,6 @@
namespace framework{
-
-
PropertySetHelper::PropertySetHelper( osl::Mutex & mutex,
TransactionManager* pExternalTransactionManager ,
sal_Bool bReleaseLockOnCall )
@@ -38,12 +36,10 @@ PropertySetHelper::PropertySetHelper( osl::Mutex & mutex,
{
}
-
PropertySetHelper::~PropertySetHelper()
{
}
-
void PropertySetHelper::impl_setPropertyChangeBroadcaster(const css::uno::Reference< css::uno::XInterface >& xBroadcaster)
{
TransactionGuard aTransaction(m_rTransactionManager, E_SOFTEXCEPTIONS);
@@ -52,7 +48,6 @@ void PropertySetHelper::impl_setPropertyChangeBroadcaster(const css::uno::Refere
m_xBroadcaster = xBroadcaster;
}
-
void SAL_CALL PropertySetHelper::impl_addPropertyInfo(const css::beans::Property& aProperty)
throw(css::beans::PropertyExistException,
css::uno::Exception )
@@ -68,7 +63,6 @@ void SAL_CALL PropertySetHelper::impl_addPropertyInfo(const css::beans::Property
m_lProps[aProperty.Name] = aProperty;
}
-
void SAL_CALL PropertySetHelper::impl_removePropertyInfo(const OUString& sProperty)
throw(css::beans::UnknownPropertyException,
css::uno::Exception )
@@ -84,12 +78,10 @@ void SAL_CALL PropertySetHelper::impl_removePropertyInfo(const OUString& sProper
m_lProps.erase(pIt);
}
-
void SAL_CALL PropertySetHelper::impl_enablePropertySet()
{
}
-
void SAL_CALL PropertySetHelper::impl_disablePropertySet()
{
TransactionGuard aTransaction(m_rTransactionManager, E_SOFTEXCEPTIONS);
@@ -104,7 +96,6 @@ void SAL_CALL PropertySetHelper::impl_disablePropertySet()
m_lProps.free();
}
-
sal_Bool PropertySetHelper::impl_existsVeto(const css::beans::PropertyChangeEvent& aEvent)
{
/* Dont use the lock here!
@@ -134,7 +125,6 @@ sal_Bool PropertySetHelper::impl_existsVeto(const css::beans::PropertyChangeEven
return sal_False;
}
-
void PropertySetHelper::impl_notifyChangeListener(const css::beans::PropertyChangeEvent& aEvent)
{
/* Dont use the lock here!
@@ -160,7 +150,6 @@ void PropertySetHelper::impl_notifyChangeListener(const css::beans::PropertyChan
}
}
-
css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL PropertySetHelper::getPropertySetInfo()
throw(css::uno::RuntimeException, std::exception)
{
@@ -170,7 +159,6 @@ css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL PropertySetHelper::
return xInfo;
}
-
void SAL_CALL PropertySetHelper::setPropertyValue(const OUString& sProperty,
const css::uno::Any& aValue )
throw(css::beans::UnknownPropertyException,
@@ -236,7 +224,6 @@ void SAL_CALL PropertySetHelper::setPropertyValue(const OUString& sProperty,
impl_notifyChangeListener(aEvent);
}
-
css::uno::Any SAL_CALL PropertySetHelper::getPropertyValue(const OUString& sProperty)
throw(css::beans::UnknownPropertyException,
css::lang::WrappedTargetException ,
@@ -259,7 +246,6 @@ css::uno::Any SAL_CALL PropertySetHelper::getPropertyValue(const OUString& sProp
return impl_getPropertyValue(aPropInfo.Name, aPropInfo.Handle);
}
-
void SAL_CALL PropertySetHelper::addPropertyChangeListener(const OUString& sProperty,
const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener)
throw(css::beans::UnknownPropertyException,
@@ -281,7 +267,6 @@ void SAL_CALL PropertySetHelper::addPropertyChangeListener(const OUString&
m_lSimpleChangeListener.addInterface(sProperty, xListener);
}
-
void SAL_CALL PropertySetHelper::removePropertyChangeListener(const OUString& sProperty,
const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener)
throw(css::beans::UnknownPropertyException,
@@ -303,7 +288,6 @@ void SAL_CALL PropertySetHelper::removePropertyChangeListener(const OUString&
m_lSimpleChangeListener.removeInterface(sProperty, xListener);
}
-
void SAL_CALL PropertySetHelper::addVetoableChangeListener(const OUString& sProperty,
const css::uno::Reference< css::beans::XVetoableChangeListener >& xListener)
throw(css::beans::UnknownPropertyException,
@@ -325,7 +309,6 @@ void SAL_CALL PropertySetHelper::addVetoableChangeListener(const OUString&
m_lVetoChangeListener.addInterface(sProperty, xListener);
}
-
void SAL_CALL PropertySetHelper::removeVetoableChangeListener(const OUString& sProperty,
const css::uno::Reference< css::beans::XVetoableChangeListener >& xListener)
throw(css::beans::UnknownPropertyException,
@@ -347,7 +330,6 @@ void SAL_CALL PropertySetHelper::removeVetoableChangeListener(const OUString&
m_lVetoChangeListener.removeInterface(sProperty, xListener);
}
-
css::uno::Sequence< css::beans::Property > SAL_CALL PropertySetHelper::getProperties()
throw(css::uno::RuntimeException, std::exception)
{
@@ -369,7 +351,6 @@ css::uno::Sequence< css::beans::Property > SAL_CALL PropertySetHelper::getProper
return lProps;
}
-
css::beans::Property SAL_CALL PropertySetHelper::getPropertyByName(const OUString& sName)
throw(css::beans::UnknownPropertyException,
css::uno::RuntimeException, std::exception )
@@ -385,7 +366,6 @@ css::beans::Property SAL_CALL PropertySetHelper::getPropertyByName(const OUStrin
return pIt->second;
}
-
sal_Bool SAL_CALL PropertySetHelper::hasPropertyByName(const OUString& sName)
throw(css::uno::RuntimeException, std::exception)
{
diff --git a/framework/source/fwi/helper/mischelper.cxx b/framework/source/fwi/helper/mischelper.cxx
index d243795e4e20..5ad024035358 100644
--- a/framework/source/fwi/helper/mischelper.cxx
+++ b/framework/source/fwi/helper/mischelper.cxx
@@ -17,7 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/document/XDocumentLanguages.hpp>
#include <com/sun/star/frame/ModuleManager.hpp>
@@ -34,7 +33,6 @@
#include <helper/mischelper.hxx>
#include <services.h>
-
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::frame;
@@ -42,8 +40,6 @@ using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::container;
using namespace ::com::sun::star::lang;
-
-
namespace framework
{
@@ -63,7 +59,6 @@ uno::Reference< linguistic2::XLanguageGuessing > LanguageGuessingHelper::GetGues
return m_xLanguageGuesser;
}
-
OUString RetrieveLabelFromCommand(
const OUString& aCmdURL,
const uno::Reference< uno::XComponentContext >& _xContext,
@@ -135,7 +130,6 @@ OUString RetrieveLabelFromCommand(
return aLabel;
}
-
void FillLangItems( std::set< OUString > &rLangItems,
const SvtLanguageTable & rLanguageTable,
const uno::Reference< frame::XFrame > & rxFrame,
@@ -221,5 +215,4 @@ void FillLangItems( std::set< OUString > &rLangItems,
} // namespace framework
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/framework/source/fwi/helper/networkdomain.cxx b/framework/source/fwi/helper/networkdomain.cxx
index 3dc4ee9c5737..6ea2a37f5469 100644
--- a/framework/source/fwi/helper/networkdomain.cxx
+++ b/framework/source/fwi/helper/networkdomain.cxx
@@ -23,7 +23,6 @@
// Windows
-
#define UNICODE
#if defined _MSC_VER
#pragma warning(push, 1)
@@ -51,10 +50,8 @@ static OUString GetUserDomain()
return OUString();
}
-
// Windows
-
namespace framework
{
@@ -77,16 +74,12 @@ OUString NetworkDomain::GetNTDomainName()
#include <errno.h>
#include <osl/thread.h>
-
// Unix
-
#if defined( SOLARIS )
-
// Solaris
-
#include <sys/systeminfo.h>
#include <sal/alloca.h>
@@ -129,10 +122,8 @@ static rtl_uString *getDomainName()
#elif defined( LINUX ) /* endif SOLARIS */
-
// Linux
-
#include <unistd.h>
#include <string.h>
@@ -170,10 +161,8 @@ static rtl_uString *getDomainName()
#else /* LINUX */
-
// Other Unix
-
static rtl_uString *getDomainName()
{
return NULL;
@@ -181,10 +170,8 @@ static rtl_uString *getDomainName()
#endif
-
// Unix
-
namespace framework
{
@@ -206,10 +193,8 @@ OUString NetworkDomain::GetNTDomainName()
#else /* UNIX */
-
// Other operating systems (non-Windows and non-Unix)
-
namespace framework
{
diff --git a/framework/source/fwi/jobs/configaccess.cxx b/framework/source/fwi/jobs/configaccess.cxx
index fb88bff4bc89..e7ba8180369e 100644
--- a/framework/source/fwi/jobs/configaccess.cxx
+++ b/framework/source/fwi/jobs/configaccess.cxx
@@ -52,7 +52,6 @@ ConfigAccess::ConfigAccess( /*IN*/ const css::uno::Reference< css::uno::XCompone
{
}
-
/**
@short last chance to close an open configuration access point
@descr In case our user forgot to close this configuration point
@@ -64,7 +63,6 @@ ConfigAccess::~ConfigAccess()
close();
}
-
/**
@short return the internal mode of this instance
@descr May be the outside user need any information about successfully opened
@@ -78,7 +76,6 @@ ConfigAccess::EOpenMode ConfigAccess::getMode() const
return m_eMode;
}
-
/**
@short open the configuration access in the specified mode
@descr We set the opened configuration access as our member. So any following method,
@@ -141,7 +138,6 @@ void ConfigAccess::open( /*IN*/ EOpenMode eMode )
}
}
-
/**
@short close the internal opened configuration access and flush all changes
@descr It checks, if the given access is valid and react in the right way.
@@ -161,7 +157,6 @@ void ConfigAccess::close()
}
}
-
/**
@short provides an access to the internal wrapped configuration access
@descr It's not allowed to safe this c++ (!) reference outside. You have
diff --git a/framework/source/fwi/uielement/constitemcontainer.cxx b/framework/source/fwi/uielement/constitemcontainer.cxx
index 43fb032904a1..f5f7a3fa0c13 100644
--- a/framework/source/fwi/uielement/constitemcontainer.cxx
+++ b/framework/source/fwi/uielement/constitemcontainer.cxx
@@ -66,7 +66,6 @@ public:
virtual sal_Bool SAL_CALL hasPropertyByName(const OUString& PropertyName) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
};
-
/**
* Create an object that implements XPropertySetInfo IPropertyArrayHelper.
*/
diff --git a/framework/source/fwi/uielement/itemcontainer.cxx b/framework/source/fwi/uielement/itemcontainer.cxx
index a7b243a0afb4..febae153689f 100644
--- a/framework/source/fwi/uielement/itemcontainer.cxx
+++ b/framework/source/fwi/uielement/itemcontainer.cxx
@@ -32,16 +32,13 @@ const char WRONG_TYPE_EXCEPTION[] = "Type must be com::sun::star::uno::Sequence<
namespace framework
{
-
// XInterface, XTypeProvider
-
ItemContainer::ItemContainer( const ShareableMutex& rMutex ) :
m_aShareMutex( rMutex )
{
}
-
ItemContainer::ItemContainer( const ConstItemContainer& rConstItemContainer, const ShareableMutex& rMutex ) : m_aShareMutex( rMutex )
{
copyItemContainer( rConstItemContainer.m_aItemVector, rMutex );