summaryrefslogtreecommitdiff
path: root/xmloff/inc
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2020-08-27 17:01:30 +0200
committerJulien Nabet <serval2412@yahoo.fr>2020-08-27 19:00:32 +0200
commitf1e789442d59330349067a4c59aee75cb267a86f (patch)
treed2011bc6849fabbec894d38a65f83081c8d20bda /xmloff/inc
parente7f81a8bcb481df4daa17ae9ef7210c68af5f337 (diff)
xmloff: prefix members of XMLTextFieldImportContext
Change-Id: I8a67d0c1c24e6c82803198fe343d4ee1c095b9b6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101484 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'xmloff/inc')
-rw-r--r--xmloff/inc/txtfldi.hxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/xmloff/inc/txtfldi.hxx b/xmloff/inc/txtfldi.hxx
index bea6df8bb853..2e8f9562c40a 100644
--- a/xmloff/inc/txtfldi.hxx
+++ b/xmloff/inc/txtfldi.hxx
@@ -385,22 +385,22 @@ public:
/** superclass for database fields: handle database and table names */
class XMLDatabaseFieldImportContext : public XMLTextFieldImportContext
{
- OUString sDatabaseName;
- OUString sDatabaseURL;
- OUString sTableName;
+ OUString m_sDatabaseName;
+ OUString m_sDatabaseURL;
+ OUString m_sTableName;
- sal_Int32 nCommandType;
- bool bCommandTypeOK;
+ sal_Int32 m_nCommandType;
+ bool m_bCommandTypeOK;
- bool bDisplay;
- bool bDisplayOK;
- bool bUseDisplay;
+ bool m_bDisplay;
+ bool m_bDisplayOK;
+ bool m_bUseDisplay;
protected:
- bool bDatabaseOK;
- bool bDatabaseNameOK;
- bool bDatabaseURLOK;
- bool bTableOK;
+ bool m_bDatabaseOK;
+ bool m_bDatabaseNameOK;
+ bool m_bDatabaseURLOK;
+ bool m_bTableOK;
/// protected constructor: only for subclasses
XMLDatabaseFieldImportContext(SvXMLImport& rImport,