summaryrefslogtreecommitdiffstats
path: root/kmail/klistboxdialog.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:14:12 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:14:12 -0600
commitfd5d099065a748cac49e20a13481f85666c53c71 (patch)
treea0f1672cd88eb0e69b9ddc2ed9b08ecd98538bd3 /kmail/klistboxdialog.cpp
parentb440a9c608596cd88efdb3bfa4661c5e37efbe4b (diff)
downloadtdepim-fd5d099065a748cac49e20a13481f85666c53c71.tar.gz
tdepim-fd5d099065a748cac49e20a13481f85666c53c71.zip
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'kmail/klistboxdialog.cpp')
-rw-r--r--kmail/klistboxdialog.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kmail/klistboxdialog.cpp b/kmail/klistboxdialog.cpp
index 7027edd6..eaa627bb 100644
--- a/kmail/klistboxdialog.cpp
+++ b/kmail/klistboxdialog.cpp
@@ -8,7 +8,7 @@
#include <tqlabel.h>
#include <tqlayout.h>
-KListBoxDialog::KListBoxDialog( TQString& _selectedString,
+TDEListBoxDialog::TDEListBoxDialog( TQString& _selectedString,
const TQString& caption,
const TQString& labelText,
TQWidget* parent,
@@ -19,7 +19,7 @@ KListBoxDialog::KListBoxDialog( TQString& _selectedString,
{
if ( !name )
- setName( "KListBoxDialog" );
+ setName( "TDEListBoxDialog" );
resize( 400, 180 );
TQFrame *page = makeMainWidget();
@@ -50,12 +50,12 @@ KListBoxDialog::KListBoxDialog( TQString& _selectedString,
/*
* Destroys the object and frees any allocated resources
*/
-KListBoxDialog::~KListBoxDialog()
+TDEListBoxDialog::~TDEListBoxDialog()
{
// no need to delete child widgets, TQt does it all for us
}
-void KListBoxDialog::setLabelAbove(const TQString& label)
+void TDEListBoxDialog::setLabelAbove(const TQString& label)
{
labelAboveLA->setText( label );
if( label.isEmpty() )
@@ -64,7 +64,7 @@ void KListBoxDialog::setLabelAbove(const TQString& label)
labelAboveLA->show();
}
-void KListBoxDialog::setCommentBelow(const TQString& comment)
+void TDEListBoxDialog::setCommentBelow(const TQString& comment)
{
commentBelowLA->setText( comment );
if( comment.isEmpty() )
@@ -75,7 +75,7 @@ void KListBoxDialog::setCommentBelow(const TQString& comment)
-void KListBoxDialog::highlighted( const TQString& txt )
+void TDEListBoxDialog::highlighted( const TQString& txt )
{
selectedString = txt;
}