summaryrefslogtreecommitdiffstats
path: root/kfloppy/floppy.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-23 01:42:07 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-23 01:42:07 +0000
commita2277b6bc715464e83882b90c2a058139b8a6b54 (patch)
treeab09b14014f59b4d8e2ddd12226aa0b22e4dfc5d /kfloppy/floppy.cpp
parentd3f79e04b34bd1f70a458b81b28fc8799498c8dc (diff)
downloadtdeutils-a2277b6bc715464e83882b90c2a058139b8a6b54.tar.gz
tdeutils-a2277b6bc715464e83882b90c2a058139b8a6b54.zip
TQt4 port kdeutils
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1238125 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kfloppy/floppy.cpp')
-rw-r--r--kfloppy/floppy.cpp32
1 files changed, 16 insertions, 16 deletions
diff --git a/kfloppy/floppy.cpp b/kfloppy/floppy.cpp
index 5075025..110bc20 100644
--- a/kfloppy/floppy.cpp
+++ b/kfloppy/floppy.cpp
@@ -48,8 +48,8 @@
#include "floppy.h"
#include "format.h"
-FloppyData::FloppyData(TQWidget * parent, const char * name)
- : KDialog( parent, name ),
+FloppyData::FloppyData(TQWidget * tqparent, const char * name)
+ : KDialog( tqparent, name ),
formatActions(0L), m_canLowLevel(false), m_canZeroOut( false )
{
@@ -288,7 +288,7 @@ FloppyData::FloppyData(TQWidget * parent, const char * name)
frame = new TQLabel( this, "NewsWindow" );
frame->setFrameStyle(TQFrame::Panel | TQFrame::Sunken);
- frame->setAlignment(WordBreak|ExpandTabs);
+ frame->tqsetAlignment(WordBreak|ExpandTabs);
TQWhatsThis::add( frame,
i18n("<qt>This is the status window, where error messages are displayed.</qt>") );
@@ -334,7 +334,7 @@ void FloppyData::closeEvent(TQCloseEvent*)
void FloppyData::keyPressEvent(TQKeyEvent *e)
{
switch(e->key()) {
- case Qt::Key_F1:
+ case TQt::Key_F1:
kapp->invokeHelp();
break;
default:
@@ -497,7 +497,7 @@ void FloppyData::format(){
if (KMessageBox::warningContinueCancel( this,
i18n("<qt>Formatting will erase all data on the device:<br/><b>%1</b><br/>"
"(Please check the correctness of the device name.)<br/>"
- "Are you sure you wish to proceed?</qt>").arg( currentComboBoxDevice )
+ "Are you sure you wish to proceed?</qt>").tqarg( currentComboBoxDevice )
, i18n("Proceed?") ) != KMessageBox::Continue)
{
return;
@@ -524,7 +524,7 @@ void FloppyData::format(){
setEnabled(false);
// Erase text box
- frame->setText( TQString::null );
+ frame->setText( TQString() );
if ( !userDevice )
{
@@ -536,10 +536,10 @@ void FloppyData::format(){
}
if (formatActions) delete formatActions;
- formatActions = new KFActionQueue(this);
+ formatActions = new KFActionQueue(TQT_TQOBJECT(this));
connect(formatActions,TQT_SIGNAL(status(const TQString &,int)),
- this,TQT_SLOT(formatStatus(const TQString &,int)));
+ this,TQT_SLOT(formattqStatus(const TQString &,int)));
connect(formatActions,TQT_SIGNAL(done(KFAction *,bool)),
this,TQT_SLOT(reset()));
@@ -550,7 +550,7 @@ void FloppyData::format(){
}
else if ( zerooutformat->isChecked() )
{
- DDZeroOut* f = new DDZeroOut( this );
+ DDZeroOut* f = new DDZeroOut( TQT_TQOBJECT(this) );
if ( userDevice )
{
f->configureDevice( currentComboBoxDevice );
@@ -569,7 +569,7 @@ void FloppyData::format(){
}
else
{
- FDFormat *f = new FDFormat(this);
+ FDFormat *f = new FDFormat(TQT_TQOBJECT(this));
f->configureDevice(drive,blocks);
f->configure(verifylabel->isChecked());
formatActions->queue(f);
@@ -577,7 +577,7 @@ void FloppyData::format(){
if ( filesystemComboBox->currentText() == i18n("DOS") )
{
- FATFilesystem *f = new FATFilesystem(this);
+ FATFilesystem *f = new FATFilesystem(TQT_TQOBJECT(this));
f->configure(verifylabel->isChecked(),
labellabel->isChecked(),
lineedit->text());
@@ -594,7 +594,7 @@ void FloppyData::format(){
else if ( filesystemComboBox->currentText() == i18n("ext2") )
{
- Ext2Filesystem *f = new Ext2Filesystem(this);
+ Ext2Filesystem *f = new Ext2Filesystem(TQT_TQOBJECT(this));
f->configure(verifylabel->isChecked(),
labellabel->isChecked(),
lineedit->text());
@@ -612,7 +612,7 @@ void FloppyData::format(){
#ifdef ANY_BSD
else if ( filesystemComboBox->currentText() == i18n("UFS") )
{
- FloppyAction *f = new UFSFilesystem(this);
+ FloppyAction *f = new UFSFilesystem(TQT_TQOBJECT(this));
f->configureDevice(drive,blocks);
formatActions->queue(f);
}
@@ -621,7 +621,7 @@ void FloppyData::format(){
#ifdef ANY_LINUX
else if ( filesystemComboBox->currentText() == i18n("Minix") )
{
- MinixFilesystem *f = new MinixFilesystem(this);
+ MinixFilesystem *f = new MinixFilesystem(TQT_TQOBJECT(this));
f->configure(verifylabel->isChecked(),
labellabel->isChecked(),
lineedit->text());
@@ -642,9 +642,9 @@ void FloppyData::format(){
formatActions->exec();
}
-void FloppyData::formatStatus(const TQString &s,int p)
+void FloppyData::formattqStatus(const TQString &s,int p)
{
- kdDebug(2002) << "FloppyData::formatStatus: " << s << " : " << p << endl;
+ kdDebug(2002) << "FloppyData::formattqStatus: " << s << " : " << p << endl;
if (!s.isEmpty())
{
const TQString oldText ( frame->text() );