summaryrefslogtreecommitdiff
path: root/sw/source/ui/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-12-19 12:13:32 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-12-19 12:21:02 +0000
commit5f273ff915ddad362afe9134aba460999c44c939 (patch)
tree4ef1c9dfee7474997deab36f377f78e998079125 /sw/source/ui/inc
parent7715f7e6b941a5b4bcde326c77647cd00c647a0b (diff)
CID#703893 SwJavaEditDialog::Get[Text|Type] orthogonal to Dialog::Get*
and const up Change-Id: I9bb363b26efaf83e36187df4bf762d64b3956ed1
Diffstat (limited to 'sw/source/ui/inc')
-rw-r--r--sw/source/ui/inc/javaedit.hxx14
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: */