summaryrefslogtreecommitdiff
path: root/svx/source/smarttags
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-30 14:59:47 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-10-31 12:56:21 +0000
commit4530451d40470bf5359645de0c142ddf9dc329b6 (patch)
tree8b57614e9316685a8178d9d61795932c3e705d45 /svx/source/smarttags
parentbd332c2a335b34e209fe2b7fdfb669c855325636 (diff)
com::sun::star->css in svx
Change-Id: If2c11fa548c5ebef2297d2491edd837b54e3707c Reviewed-on: https://gerrit.libreoffice.org/19690 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'svx/source/smarttags')
-rw-r--r--svx/source/smarttags/SmartTagMgr.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/svx/source/smarttags/SmartTagMgr.cxx b/svx/source/smarttags/SmartTagMgr.cxx
index f4ba7045c059..ea2667dba8c4 100644
--- a/svx/source/smarttags/SmartTagMgr.cxx
+++ b/svx/source/smarttags/SmartTagMgr.cxx
@@ -185,7 +185,7 @@ void SmartTagMgr::GetActionSequences( Sequence < OUString >& rSmartTagTypes,
/** Returns the caption for a smart tag type.
*/
-OUString SmartTagMgr::GetSmartTagCaption( const OUString& rSmartTagType, const com::sun::star::lang::Locale& rLocale ) const
+OUString SmartTagMgr::GetSmartTagCaption( const OUString& rSmartTagType, const css::lang::Locale& rLocale ) const
{
OUString aRet;
@@ -232,7 +232,7 @@ void SmartTagMgr::WriteConfiguration( const bool* pIsLabelTextWithSmartTags,
mxConfigurationSettings->setPropertyValue( "RecognizeSmartTags", aEnabled );
bCommit = true;
}
- catch ( ::com::sun::star::uno::Exception& )
+ catch ( css::uno::Exception& )
{
}
}
@@ -254,7 +254,7 @@ void SmartTagMgr::WriteConfiguration( const bool* pIsLabelTextWithSmartTags,
mxConfigurationSettings->setPropertyValue( "ExcludedSmartTagTypes", aNewTypes );
bCommit = true;
}
- catch ( ::com::sun::star::uno::Exception& )
+ catch ( css::uno::Exception& )
{
}
}
@@ -265,14 +265,14 @@ void SmartTagMgr::WriteConfiguration( const bool* pIsLabelTextWithSmartTags,
{
Reference< util::XChangesBatch >( mxConfigurationSettings, UNO_QUERY_THROW )->commitChanges();
}
- catch ( ::com::sun::star::uno::Exception& )
+ catch ( css::uno::Exception& )
{
}
}
}
}
-// ::com::sun::star::util::XModifyListener
+// css::util::XModifyListener
void SmartTagMgr::modified( const lang::EventObject& ) throw( RuntimeException, std::exception )
{
SolarMutexGuard aGuard;
@@ -284,7 +284,7 @@ void SmartTagMgr::modified( const lang::EventObject& ) throw( RuntimeException,
LoadLibraries();
}
-// ::com::sun::star::lang::XEventListener
+// css::lang::XEventListener
void SmartTagMgr::disposing( const lang::EventObject& rEvent ) throw( RuntimeException, std::exception )
{
SolarMutexGuard aGuard;
@@ -311,7 +311,7 @@ void SmartTagMgr::disposing( const lang::EventObject& rEvent ) throw( RuntimeExc
}
}
-// ::com::sun::star::util::XChangesListener
+// css::util::XChangesListener
void SmartTagMgr::changesOccurred( const util::ChangesEvent& rEvent ) throw( RuntimeException, std::exception)
{
SolarMutexGuard aGuard;