diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-11-06 12:28:48 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-11-06 12:39:40 +0200 |
commit | ba80f72df4256246ca3781442a140b10f71effa0 (patch) | |
tree | 76bcdafb9e7ed928b7c54ca2c83085bbc65f6e5f /sc/inc | |
parent | 705b6b61e3cb7c9180debaf90f8a08faf0de2bfb (diff) |
Try to get the SC_DLLPUBLIC placement right
Change-Id: Iddf7cad771d271e848ba3abc1c144b9c313cdb99
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/calcconfig.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/inc/calcconfig.hxx b/sc/inc/calcconfig.hxx index aa286a05196c..eaaeb3f0f4d1 100644 --- a/sc/inc/calcconfig.hxx +++ b/sc/inc/calcconfig.hxx @@ -66,11 +66,11 @@ struct SC_DLLPUBLIC ScCalcConfig bool operator!= (const ScCalcConfig& r) const; }; -std::ostream& SC_DLLPUBLIC operator<<(std::ostream& rStream, const ScCalcConfig& rConfig); +SC_DLLPUBLIC std::ostream& operator<<(std::ostream& rStream, const ScCalcConfig& rConfig); -OUString SC_DLLPUBLIC ScOpCodeSetToNumberString(const std::set<OpCodeEnum>& rOpCodes); -OUString SC_DLLPUBLIC ScOpCodeSetToSymbolicString(const std::set<OpCodeEnum>& rOpCodes); -std::set<OpCodeEnum> SC_DLLPUBLIC ScStringToOpCodeSet(const OUString& rOpCodes); +SC_DLLPUBLIC OUString ScOpCodeSetToNumberString(const std::set<OpCodeEnum>& rOpCodes); +SC_DLLPUBLIC OUString ScOpCodeSetToSymbolicString(const std::set<OpCodeEnum>& rOpCodes); +SC_DLLPUBLIC std::set<OpCodeEnum> ScStringToOpCodeSet(const OUString& rOpCodes); #endif |