diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2016-09-30 15:00:40 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2016-10-02 08:17:59 +0000 |
commit | 4514d7032b8a93d6bfacbb3354bafca98c0559b6 (patch) | |
tree | c4374a572a17cfa0895855f29ff1930dff13d17e /starmath/inc/parse.hxx | |
parent | d88ba9042cc68cd6c8aecd1c54c79f11d0887624 (diff) |
starmath: Prefix members of SmParser
Change-Id: Ib39bf2a9b8c37d9f2ac4ed3db602c3b0a82a506b
Reviewed-on: https://gerrit.libreoffice.org/29397
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Takeshi Abe <tabe@fixedpoint.jp>
Diffstat (limited to 'starmath/inc/parse.hxx')
-rw-r--r-- | starmath/inc/parse.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/starmath/inc/parse.hxx b/starmath/inc/parse.hxx index 2c8e9b2ea0d9..b3669dd1bd05 100644 --- a/starmath/inc/parse.hxx +++ b/starmath/inc/parse.hxx @@ -38,9 +38,9 @@ class SmParser int m_nCurError; sal_Int32 m_nBufferIndex, m_nTokenIndex; - sal_Int32 m_Row, + sal_Int32 m_nRow, m_nColOff; - bool bImportSymNames, + bool m_bImportSymNames, m_bExportSymNames; // map of used symbols (used to reduce file size by exporting only actually used symbols) @@ -105,8 +105,8 @@ public: const OUString & GetText() const { return m_aBufferString; }; - bool IsImportSymbolNames() const { return bImportSymNames; } - void SetImportSymbolNames(bool bVal) { bImportSymNames = bVal; } + bool IsImportSymbolNames() const { return m_bImportSymNames; } + void SetImportSymbolNames(bool bVal) { m_bImportSymNames = bVal; } bool IsExportSymbolNames() const { return m_bExportSymNames; } void SetExportSymbolNames(bool bVal) { m_bExportSymNames = bVal; } |