diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-18 18:35:27 -0600 |
|---|---|---|
| committer | Slávek Banko <slavek.banko@axis.cz> | 2012-06-04 03:15:14 +0200 |
| commit | 7ee38ebc22d177c8f0f4805d0e8479736ec94f79 (patch) | |
| tree | 8923548e283ead89f5d6d5508ca68e294bfe1a1e /kfloppy/floppy.cpp | |
| parent | 82588f54335b5e52502303e89e2035066a6cc808 (diff) | |
| download | tdeutils-7ee38ebc22d177c8f0f4805d0e8479736ec94f79.tar.gz tdeutils-7ee38ebc22d177c8f0f4805d0e8479736ec94f79.zip | |
Rename old tq methods that no longer need a unique name
(cherry picked from commit bcc684e28ad6f9ebeeae5d334a4dc297cef3e816)
Diffstat (limited to 'kfloppy/floppy.cpp')
| -rw-r--r-- | kfloppy/floppy.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kfloppy/floppy.cpp b/kfloppy/floppy.cpp index 18851bc..a89d18f 100644 --- a/kfloppy/floppy.cpp +++ b/kfloppy/floppy.cpp @@ -288,7 +288,7 @@ FloppyData::FloppyData(TQWidget * parent, const char * name) frame = new TQLabel( this, "NewsWindow" ); frame->setFrameStyle(TQFrame::Panel | TQFrame::Sunken); - frame->tqsetAlignment(WordBreak|ExpandTabs); + frame->setAlignment(WordBreak|ExpandTabs); TQWhatsThis::add( frame, i18n("<qt>This is the status window, where error messages are displayed.</qt>") ); @@ -539,7 +539,7 @@ void FloppyData::format(){ formatActions = new KFActionQueue(TQT_TQOBJECT(this)); connect(formatActions,TQT_SIGNAL(status(const TQString &,int)), - this,TQT_SLOT(formattqStatus(const TQString &,int))); + this,TQT_SLOT(formatStatus(const TQString &,int))); connect(formatActions,TQT_SIGNAL(done(KFAction *,bool)), this,TQT_SLOT(reset())); @@ -642,7 +642,7 @@ void FloppyData::format(){ formatActions->exec(); } -void FloppyData::formattqStatus(const TQString &s,int p) +void FloppyData::formatStatus(const TQString &s,int p) { kdDebug(2002) << "FloppyData::formatStatus: " << s << " : " << p << endl; if (!s.isEmpty()) |
