diff options
Diffstat (limited to 'kandy/src/kandyview.cpp')
-rw-r--r-- | kandy/src/kandyview.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kandy/src/kandyview.cpp b/kandy/src/kandyview.cpp index 27d3b7b6b..38fcb9cb1 100644 --- a/kandy/src/kandyview.cpp +++ b/kandy/src/kandyview.cpp @@ -18,8 +18,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. As a special exception, permission is given to link this program - with any edition of Qt, and distribute the resulting executable, - without including the source code for Qt in the source distribution. + with any edition of TQt, and distribute the resulting executable, + without including the source code for TQt in the source distribution. */ #include <unistd.h> @@ -57,8 +57,8 @@ #include "kandyview.h" #include "kandyview.moc" -KandyView::KandyView(CommandScheduler *scheduler,TQWidget *parent) - : TQWidget(parent) +KandyView::KandyView(CommandScheduler *scheduler,TQWidget *tqparent) + : TQWidget(tqparent) { mModified = false; mScheduler = scheduler; @@ -249,8 +249,8 @@ void KandyView::executeCommand() ATParameter *p = paraList.at(i); if (p->userInput()) { bool ok = false; - TQString value = KInputDialog::getText(TQString::null, - i18n("Enter value for %1:").arg(p->name()),TQString::null,&ok,this); + TQString value = KInputDialog::getText(TQString(), + i18n("Enter value for %1:").arg(p->name()),TQString(),&ok,this); if (!ok) return; p->setValue(value); |