diff options
author | Andreas Bregas <ab@openoffice.org> | 2001-03-03 13:36:55 +0000 |
---|---|---|
committer | Andreas Bregas <ab@openoffice.org> | 2001-03-03 13:36:55 +0000 |
commit | 4af21bbe2505b0455a346421e18a82a377eb15ec (patch) | |
tree | c97c33bd615de197ae85ec01ae62d2b0ca4d2a63 /basctl | |
parent | 5cd64adbaa8d83b5a184dc0bc83ef06a7693b06f (diff) |
UnoControlDialogModel as parameter for SetDialog()
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/inc/dlged.hxx | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/basctl/source/inc/dlged.hxx b/basctl/source/inc/dlged.hxx index 2f523010987c..57cd02bf3f30 100644 --- a/basctl/source/inc/dlged.hxx +++ b/basctl/source/inc/dlged.hxx @@ -2,9 +2,9 @@ * * $RCSfile: dlged.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: tbe $ $Date: 2001-02-26 10:52:34 $ + * last change: $Author: ab $ $Date: 2001-03-03 14:36:55 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -129,6 +129,8 @@ protected: Timer aPaintTimer; Rectangle aPaintRect; + // Data for new library container mechanism + public: VCDlgEditor( StarBASIC* pBasic ); ~VCDlgEditor(); @@ -144,8 +146,10 @@ public: ScrollBar* GetVScroll() const { return pVScroll; } void DoScroll( ScrollBar* pActScroll ); - void SetDialog(); // tbe change this - ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer > GetDialog() const {return m_xUnoControlDialogModel;} + void SetDialog( ::com::sun::star::uno::Reference< + ::com::sun::star::container::XNameContainer > xUnoControlDialogModel ); + ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer > GetDialog() const + {return m_xUnoControlDialogModel;} StarBASIC* GetBasic() const; |