summaryrefslogtreecommitdiffstats
path: root/kmail/klistboxdialog.cpp
diff options
context:
space:
mode:
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;
}