diff options
Diffstat (limited to 'include/basic')
-rw-r--r-- | include/basic/basrdll.hxx | 8 | ||||
-rw-r--r-- | include/basic/sbdef.hxx | 3 |
2 files changed, 6 insertions, 5 deletions
diff --git a/include/basic/basrdll.hxx b/include/basic/basrdll.hxx index 623ec6afcbaf..6c2fc4655122 100644 --- a/include/basic/basrdll.hxx +++ b/include/basic/basrdll.hxx @@ -23,8 +23,6 @@ #include <basic/basicdllapi.h> #include <memory> -class ResMgr; - class BASIC_DLLPUBLIC BasicDLL { public: @@ -32,10 +30,10 @@ public: std::unique_ptr<Impl> m_xImpl; public: - BasicDLL(); - ~BasicDLL(); + BasicDLL(); + ~BasicDLL(); - ResMgr* GetBasResMgr() const; + const std::locale& GetBasResLocale() const; static void BasicBreak(); diff --git a/include/basic/sbdef.hxx b/include/basic/sbdef.hxx index 40071031eff2..8df50e07678a 100644 --- a/include/basic/sbdef.hxx +++ b/include/basic/sbdef.hxx @@ -23,6 +23,7 @@ #include <basic/sbxdef.hxx> #include <rtl/ustring.hxx> #include <basic/basicdllapi.h> +#include <svtools/ehdl.hxx> #include <o3tl/typed_flags_set.hxx> // Returns type name for Basic type, array flag is ignored @@ -67,6 +68,8 @@ enum class PropertyMode Set }; +BASIC_DLLPUBLIC const ErrMsgCode* getRID_BASIC_START(); + #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |