summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Burow <pb@openoffice.org>2001-06-06 11:48:06 +0000
committerPeter Burow <pb@openoffice.org>2001-06-06 11:48:06 +0000
commitc5f0562a4d97053b2503630a7d62e97e061cbd24 (patch)
treea4e0951d8b671c0187a33f4f5f2f2fb269a9823b
parent9f629ce3a769c272d7d197e6908d3fb0a908ef1c (diff)
fix: #87514# GetLanguageType() added
-rw-r--r--svtools/source/config/pathoptions.cxx15
1 files changed, 13 insertions, 2 deletions
diff --git a/svtools/source/config/pathoptions.cxx b/svtools/source/config/pathoptions.cxx
index 4301e7030de3..5a1d392214a5 100644
--- a/svtools/source/config/pathoptions.cxx
+++ b/svtools/source/config/pathoptions.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: pathoptions.cxx,v $
*
- * $Revision: 1.43 $
+ * $Revision: 1.44 $
*
- * last change: $Author: pl $ $Date: 2001-05-11 19:51:41 $
+ * last change: $Author: pb $ $Date: 2001-06-06 12:48:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -287,6 +287,8 @@ public:
rtl::OUString SubstVar( const rtl::OUString& rVar );
rtl::OUString SubstituteAndConvert( const rtl::OUString& rPath );
+
+ LanguageType GetLanguageType() const { return m_eLanguageType; }
};
// global ----------------------------------------------------------------
@@ -1568,6 +1570,15 @@ sal_Bool SvtPathOptions::SearchFile( String& rIniFile, Pathes ePath )
return bRet;
}
+// -----------------------------------------------------------------------
+
+LanguageType SvtPathOptions::GetLanguageType() const
+{
+ return pImp->GetLanguageType();
+}
+
+// class PathService -----------------------------------------------------
+
void SAL_CALL PathService::addPropertyChangeListener( const ::rtl::OUString& sKeyName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyChangeListener >& xListener ) throw(::com::sun::star::uno::RuntimeException) {}
void SAL_CALL PathService::removePropertyChangeListener( const ::rtl::OUString& sKeyName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyChangeListener >& xListener ) throw(::com::sun::star::uno::RuntimeException) {}
void SAL_CALL PathService::flush( ) throw(::com::sun::star::uno::RuntimeException) {}