diff options
Diffstat (limited to 'sw/source/ui/inc/javaedit.hxx')
-rw-r--r-- | sw/source/ui/inc/javaedit.hxx | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/sw/source/ui/inc/javaedit.hxx b/sw/source/ui/inc/javaedit.hxx index 569362ebc98a..209c39a931fc 100644 --- a/sw/source/ui/inc/javaedit.hxx +++ b/sw/source/ui/inc/javaedit.hxx @@ -70,23 +70,19 @@ private: void CheckTravel(); void SetFld(); - using Dialog::GetText; - using Window::GetType; - public: SwJavaEditDialog(Window* pParent, SwWrtShell* pWrtSh); ~SwJavaEditDialog(); - OUString GetText() { return aText; } + OUString GetScriptText() const { return aText; } - OUString GetType() { return aType; } + OUString GetScriptType() const { return aType; } - sal_Bool IsUrl() { return bIsUrl; } - sal_Bool IsNew() { return bNew; } - bool IsUpdate(); + sal_Bool IsUrl() const { return bIsUrl; } + sal_Bool IsNew() const { return bNew; } + bool IsUpdate() const; }; - #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |