diff options
author | Mathias Bauer <mba@openoffice.org> | 2010-07-10 18:21:24 +0200 |
---|---|---|
committer | Mathias Bauer <mba@openoffice.org> | 2010-07-10 18:21:24 +0200 |
commit | 4a02c63d1431b2e8686a035e119c4a2f5c972592 (patch) | |
tree | 06a7b49c95fb2c8de73679b96e5eb33c4d251f25 /sc/inc/addincol.hxx | |
parent | 48fbbe2989e13b073c266345081c0ed73e2ec0ef (diff) |
CWS changehid: #i111874#: change code to support HelpIds as byte strings
Diffstat (limited to 'sc/inc/addincol.hxx')
-rw-r--r-- | sc/inc/addincol.hxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sc/inc/addincol.hxx b/sc/inc/addincol.hxx index fbc1444cc6de..f8c47ab24446 100644 --- a/sc/inc/addincol.hxx +++ b/sc/inc/addincol.hxx @@ -40,6 +40,7 @@ #include <i18npool/lang.h> #include <rtl/ustring.h> #include "scdllapi.h" +#include <rtl/ustring.hxx> #ifndef SC_SCMATRIX_HXX #include "scmatrix.hxx" @@ -99,14 +100,14 @@ private: ScAddInArgDesc* pArgDescs; long nCallerPos; USHORT nCategory; - USHORT nHelpId; + rtl::OString sHelpId; mutable com::sun::star::uno::Sequence< com::sun::star::sheet::LocalizedName> aCompNames; mutable BOOL bCompInitialized; public: ScUnoAddInFuncData( const String& rNam, const String& rLoc, const String& rDesc, - USHORT nCat, USHORT nHelp, + USHORT nCat, const rtl::OString&, const com::sun::star::uno::Reference< com::sun::star::reflection::XIdlMethod>& rFunc, const com::sun::star::uno::Any& rO, @@ -126,7 +127,7 @@ public: long GetCallerPos() const { return nCallerPos; } const String& GetDescription() const { return aDescription; } USHORT GetCategory() const { return nCategory; } - USHORT GetHelpId() const { return nHelpId; } + const rtl::OString GetHelpId() const { return sHelpId; } const com::sun::star::uno::Sequence< com::sun::star::sheet::LocalizedName>& GetCompNames() const; BOOL GetExcelName( LanguageType eDestLang, String& rRetExcelName ) const; |