diff -r 71781823f776 -r 06b8e2af4411 qtmobileextensions/examples/systemtoneserviceex/ststest.cpp --- a/qtmobileextensions/examples/systemtoneserviceex/ststest.cpp Thu May 27 13:42:11 2010 +0300 +++ b/qtmobileextensions/examples/systemtoneserviceex/ststest.cpp Fri Jun 11 14:26:25 2010 +0300 @@ -51,16 +51,16 @@ callbackCleanTimer.setSingleShot(true); connect(&callbackCleanTimer, SIGNAL(timeout()), this, SLOT(cleanCallback())); - QPushButton *quitButton = new QPushButton(tr("QUIT")); + QPushButton *quitButton = new QPushButton("QUIT"); connect(quitButton, SIGNAL(clicked()), qApp, SLOT(quit())); - QPushButton *playToneButton = new QPushButton(tr("Play Tone")); + QPushButton *playToneButton = new QPushButton("Play Tone"); connect(playToneButton, SIGNAL(clicked()), this, SLOT(playTone())); - QPushButton *playAlarmButton = new QPushButton(tr("Play Alarm")); + QPushButton *playAlarmButton = new QPushButton("Play Alarm"); connect(playAlarmButton, SIGNAL(clicked()), this, SLOT(playAlarm())); - QPushButton *stopAlarmButton = new QPushButton(tr("Stop Alarm")); + QPushButton *stopAlarmButton = new QPushButton("Stop Alarm"); connect(stopAlarmButton, SIGNAL(clicked()), this, SLOT(stopAlarm()));