diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-03 04:12:51 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-03 04:12:51 +0000 |
commit | 560378aaca1784ba19806a0414a32b20c744de39 (patch) | |
tree | ce0dfd7c3febf2a1adc7603d1019a8be2083c415 /kdeui/kinputdialog.h | |
parent | d4d5af1cdbd3cc65d095e0afc5b1f4260091cf5d (diff) | |
download | tdelibs-560378aaca1784ba19806a0414a32b20c744de39.tar.gz tdelibs-560378aaca1784ba19806a0414a32b20c744de39.zip |
Automated conversion for enhanced compatibility with TQt for Qt4 3.4.0 TP1
NOTE: This will not compile with Qt4 (yet), however it does compile with Qt3
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1211081 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdeui/kinputdialog.h')
-rw-r--r-- | kdeui/kinputdialog.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kdeui/kinputdialog.h b/kdeui/kinputdialog.h index c675a280c..3228545a0 100644 --- a/kdeui/kinputdialog.h +++ b/kdeui/kinputdialog.h @@ -57,7 +57,7 @@ class KDEUI_EXPORT KInputDialog : public KDialogBase */ KInputDialog( const TQString &caption, const TQString &label, const TQString &value, TQWidget *parent, const char *name, - TQValidator *validator, const TQString &mask ); + TQValidator *validator, const TQString &tqmask ); KInputDialog( const TQString &caption, const TQString &label, const TQString &value, TQWidget *parent, const char *name ); KInputDialog( const TQString &caption, const TQString &label, int value, @@ -111,15 +111,15 @@ class KDEUI_EXPORT KInputDialog : public KDialogBase * @param parent Parent of the dialog widget * @param name Name of the dialog widget * @param validator A @ref TQValidator to be associated with the line edit - * @param mask Mask associated with the line edit. See the - * documentation for @ref TQLineEdit about masks. + * @param tqmask Mask associated with the line edit. See the + * documentation for @ref TQLineEdit about tqmasks. * * @return String user entered if Ok was pressed, else a null string */ static TQString getText( const TQString &caption, const TQString &label, const TQString &value=TQString::null, bool *ok=0, TQWidget *parent=0, const char *name=0, TQValidator *validator=0, - const TQString &mask=TQString::null ); + const TQString &tqmask=TQString::null ); /** * Same as @ref getText except it provides an extra parameter to specify @@ -132,7 +132,7 @@ class KDEUI_EXPORT KInputDialog : public KDialogBase static TQString text( const TQString &caption, const TQString &label, const TQString &value=TQString::null, bool *ok=0, TQWidget *parent=0, const char *name=0, TQValidator *validator=0, - const TQString &mask=TQString::null, + const TQString &tqmask=TQString::null, const TQString& whatsThis=TQString::null ); /** |