summaryrefslogtreecommitdiffstats
path: root/cui/source/inc/pastedlg.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-05-14 14:05:38 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-05-14 16:14:55 +0100
commit467dc11fbabb5579b4f05fce61d94720a0988df6 (patch)
tree352e81602a73c4bde72ed536c81b0d7c950e467a /cui/source/inc/pastedlg.hxx
parentIconBox checkbox is always hidden and always disabled (diff)
downloadcore-467dc11fbabb5579b4f05fce61d94720a0988df6.tar.gz
core-467dc11fbabb5579b4f05fce61d94720a0988df6.zip
adapt code to use paste special .ui
Change-Id: Iaac28f442aa38dd6610c89ba04ea2d1ccfca35c5
Diffstat (limited to 'cui/source/inc/pastedlg.hxx')
-rw-r--r--cui/source/inc/pastedlg.hxx14
1 files changed, 5 insertions, 9 deletions
diff --git a/cui/source/inc/pastedlg.hxx b/cui/source/inc/pastedlg.hxx
index f5366e053e93..30be129e9faa 100644
--- a/cui/source/inc/pastedlg.hxx
+++ b/cui/source/inc/pastedlg.hxx
@@ -39,19 +39,15 @@ class TransferableDataHelper;
class SvPasteObjectDialog : public ModalDialog
{
- FixedText aFtSource;
- FixedText aFtObjectSource;
- FixedLine aFlChoice;
- ListBox aLbInsertList;
- OKButton aOKButton1;
- CancelButton aCancelButton1;
- HelpButton aHelpButton1;
+ FixedText* m_pFtObjectSource;
+ ListBox* m_pLbInsertList;
+ OKButton* m_pOKButton;
::std::map< SotFormatStringId, String > aSupplementMap;
SvGlobalName aObjClassName;
String aObjName;
- ListBox& ObjectLB() { return aLbInsertList; }
- FixedText& ObjectSource() { return aFtObjectSource; }
+ ListBox& ObjectLB() { return *m_pLbInsertList; }
+ FixedText& ObjectSource() { return *m_pFtObjectSource; }
void SelectObject();
DECL_LINK( SelectHdl, ListBox * );