summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-01-17 20:28:50 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2015-01-17 20:30:38 +0900
commit8d279e8081162927dfb58c230433230101a35f4c (patch)
tree6b40b4ed4ae61908c255d10838607ebdbf6f596b /starmath
parent5c99a17037b807f7728ed8c677559c3032b9500c (diff)
Drop unused inline functions
Change-Id: Iba54fb717b4337ffe255d849a1c073f7baf7c921
Diffstat (limited to 'starmath')
-rw-r--r--starmath/inc/symbol.hxx1
-rw-r--r--starmath/inc/types.hxx3
2 files changed, 0 insertions, 4 deletions
diff --git a/starmath/inc/symbol.hxx b/starmath/inc/symbol.hxx
index dc1f0bb6451c..2b6df4ff97da 100644
--- a/starmath/inc/symbol.hxx
+++ b/starmath/inc/symbol.hxx
@@ -137,7 +137,6 @@ public:
std::set< OUString > GetSymbolSetNames() const;
const SymbolPtrVec_t GetSymbolSet( const OUString& rSymbolSetName );
- sal_uInt16 GetSymbolCount() const { return static_cast< sal_uInt16 >(m_aSymbols.size()); }
const SymbolPtrVec_t GetSymbols() const;
bool AddOrReplaceSymbol( const SmSym & rSymbol, bool bForceChange = false );
void RemoveSymbol( const OUString & rSymbolName );
diff --git a/starmath/inc/types.hxx b/starmath/inc/types.hxx
index 7ab5b07cd849..aeb1dcf94ef3 100644
--- a/starmath/inc/types.hxx
+++ b/starmath/inc/types.hxx
@@ -31,9 +31,6 @@ enum SmPrintSize { PRINT_SIZE_NORMAL, PRINT_SIZE_SCALED, PRINT_SIZE_ZOOMED };
inline bool IsInPrivateUseArea( sal_Unicode cChar ) { return 0xE000 <= cChar && cChar <= 0xF8FF; }
-// Greek char range as seen in svx/.../charmap.cxx RID_SUBSETSTR_BASIC_GREEK
-inline bool IsGreekChar( sal_Unicode cChar ) { return 0x0370 <= cChar && cChar <= 0x03FF; }
-
sal_Unicode ConvertMathToMathML( sal_Unicode cChar );