summaryrefslogtreecommitdiff
path: root/cui/source/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-10-28 10:23:04 +0200
committerNoel Grandin <noel@peralex.com>2014-10-28 10:50:17 +0200
commitdcbe265f7e23fac9d6604b8462f4cdf355a64061 (patch)
tree897ea0a1bf8d974c0615006d6b3a0c83d8825818 /cui/source/inc
parent8e156ef6d8a236a49303b12a66ac6cae1ccd567c (diff)
rename class field pEntries to mpEntries
Change-Id: Iea8643dfa472a663023afb57654fccdda85ca601
Diffstat (limited to 'cui/source/inc')
-rw-r--r--cui/source/inc/cfg.hxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/cui/source/inc/cfg.hxx b/cui/source/inc/cfg.hxx
index ebbff4af7b1f..2079666c9f51 100644
--- a/cui/source/inc/cfg.hxx
+++ b/cui/source/inc/cfg.hxx
@@ -214,11 +214,11 @@ class SvxConfigEntry
private:
/// common properties
- sal_uInt16 nId;
- OUString aHelpText;
- OUString aLabel;
- OUString aCommand;
- OUString aHelpURL;
+ sal_uInt16 nId;
+ OUString aHelpText;
+ OUString aLabel;
+ OUString aCommand;
+ OUString aHelpURL;
bool bPopUp;
bool bStrEdited;
@@ -233,7 +233,7 @@ private:
::com::sun::star::uno::Reference<
::com::sun::star::graphic::XGraphic > xBackupGraphic;
- SvxEntries *pEntries;
+ SvxEntries *mpEntries;
public:
@@ -252,7 +252,7 @@ public:
bIsParentData( false ),
bIsVisible( true ),
nStyle( 0 ),
- pEntries( 0 )
+ mpEntries( 0 )
{}
~SvxConfigEntry();
@@ -279,9 +279,9 @@ public:
bool IsBinding() const { return !bPopUp; }
bool IsSeparator() const { return nId == 0; }
- SvxEntries* GetEntries() const { return pEntries; }
- void SetEntries( SvxEntries* entries ) { pEntries = entries; }
- bool HasEntries() const { return pEntries != NULL; }
+ SvxEntries* GetEntries() const { return mpEntries; }
+ void SetEntries( SvxEntries* entries ) { mpEntries = entries; }
+ bool HasEntries() const { return mpEntries != NULL; }
void SetMain( bool bValue = true ) { bIsMain = bValue; }
bool IsMain() { return bIsMain; }
@@ -501,7 +501,7 @@ class SvxMainMenuOrganizerDialog : public ModalDialog
PushButton* m_pMoveUpButton;
PushButton* m_pMoveDownButton;
- SvxEntries* pEntries;
+ SvxEntries* mpEntries;
SvTreeListEntry* pNewMenuEntry;
bool bModified;
@@ -518,7 +518,7 @@ public:
virtual ~SvxMainMenuOrganizerDialog ();
- SvxEntries* GetEntries() { return pEntries;}
+ SvxEntries* GetEntries() { return mpEntries;}
void SetEntries( SvxEntries* );
SvxConfigEntry* GetSelectedEntry();
};