summaryrefslogtreecommitdiff
path: root/starmath/inc/symbol.hxx
diff options
context:
space:
mode:
authorThomas Lange <tl@openoffice.org>2001-09-13 10:16:08 +0000
committerThomas Lange <tl@openoffice.org>2001-09-13 10:16:08 +0000
commit33921ff9a613e5ca2aaab0dfea66e44e2cef95c7 (patch)
treea03cccbfa0279010b846f73909e56a33eb523c82 /starmath/inc/symbol.hxx
parent44e4264561f176de71eec8ba69304080b88bbda2 (diff)
problem with new SOLARIS compiler fixed
Diffstat (limited to 'starmath/inc/symbol.hxx')
-rw-r--r--starmath/inc/symbol.hxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/starmath/inc/symbol.hxx b/starmath/inc/symbol.hxx
index 0a466b29b147..2e4d50867ccc 100644
--- a/starmath/inc/symbol.hxx
+++ b/starmath/inc/symbol.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: symbol.hxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: tl $ $Date: 2001-08-28 07:46:06 $
+ * last change: $Author: tl $ $Date: 2001-09-13 11:15:07 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -257,27 +257,27 @@ public:
void ChangeSymbolSet(SmSymSet* pSymbolSet);
void DeleteSymbolSet(USHORT SymbolSetNo);
USHORT GetSymbolSetPos(const String& rSymbolSetName) const;
- USHORT GetSymbolSetCount() const { return pImpl->NoSymbolSets; }
+ USHORT GetSymbolSetCount() const { return pImpl->NoSymbolSets; }
SmSymSet *GetSymbolSet(USHORT SymbolSetNo) const
{
return pImpl->SymbolSets.Get(SymbolSetNo);
}
- SmSym * GetSymbol(const String& rSymbolName);
- const SmSym * GetSymbol(const String& rSymbolName) const
+ SmSym * GetSymbolByName(const String& rSymbolName);
+ const SmSym * GetSymbolByName(const String& rSymbolName) const
{
- return ((SmSymSetManager *) this)->GetSymbol(rSymbolName);
+ return ((SmSymSetManager *) this)->GetSymbolByName(rSymbolName);
}
- void AddReplaceSymbol( const SmSym & rSymbol );
- USHORT GetSymbolCount() const;
- const SmSym * GetSymbol( USHORT nPos ) const;
+ void AddReplaceSymbol( const SmSym & rSymbol );
+ USHORT GetSymbolCount() const;
+ const SmSym * GetSymbolByPos( USHORT nPos ) const;
BOOL IsModified() const { return pImpl->Modified; }
void SetModified(BOOL Modify) { pImpl->Modified = Modify; }
- void Load();
- void Save();
+ void Load();
+ void Save();
};
#endif