diff options
author | Timothy Pearson <[email protected]> | 2013-02-01 15:05:53 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-01 15:05:53 -0600 |
commit | 4955fd5009a6f4b615fec006c960c0ed99e3d9a7 (patch) | |
tree | 5721cb5c85684019e0649729dca1b90e93934efb /src/configenvironmentpage.cpp | |
parent | 5b1e3197e7c9ef6e24eaf7863a7ddea5996e581b (diff) | |
download | soundkonverter-4955fd5009a6f4b615fec006c960c0ed99e3d9a7.tar.gz soundkonverter-4955fd5009a6f4b615fec006c960c0ed99e3d9a7.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'src/configenvironmentpage.cpp')
-rwxr-xr-x | src/configenvironmentpage.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/configenvironmentpage.cpp b/src/configenvironmentpage.cpp index d67e2ad..98ae506 100755 --- a/src/configenvironmentpage.cpp +++ b/src/configenvironmentpage.cpp @@ -36,7 +36,7 @@ ConfigEnvironmentPage::ConfigEnvironmentPage( Config* _config, TQMap<TQString, T // box->addWidget( eDirectories ); TQHBoxLayout* directoriesBox = new TQHBoxLayout( box ); - lDirectories = new KListBox( parent, "lDirectories" ); + lDirectories = new TDEListBox( parent, "lDirectories" ); lDirectories->insertStringList( config->data.environment.directories ); directoriesBox->addWidget( lDirectories ); connect( lDirectories, TQT_SIGNAL(highlighted(int)), @@ -86,7 +86,7 @@ ConfigEnvironmentPage::ConfigEnvironmentPage( Config* _config, TQMap<TQString, T TQVBoxLayout* foundProgramsBox = new TQVBoxLayout( programsBox ); TQLabel* lFoundProgramsLabel = new TQLabel( i18n("Programs found")+":", parent, "lFoundProgramsLabel" ); foundProgramsBox->addWidget( lFoundProgramsLabel ); - lFoundPrograms = new KListBox( parent, "lFoundPrograms" ); + lFoundPrograms = new TDEListBox( parent, "lFoundPrograms" ); lFoundPrograms->setSelectionMode( TQListBox::NoSelection ); foundProgramsBox->addWidget( lFoundPrograms ); //connect(lPrograms,TQT_SIGNAL(highlighted(int)),this,TQT_SLOT(programsSelectionChanged(int))); @@ -95,7 +95,7 @@ ConfigEnvironmentPage::ConfigEnvironmentPage( Config* _config, TQMap<TQString, T TQVBoxLayout* notFoundProgramsBox = new TQVBoxLayout( programsBox ); TQLabel* lNotFoundProgramsLabel = new TQLabel( i18n("Programs not found")+":", parent, "lNotFoundProgramsLabel" ); notFoundProgramsBox->addWidget( lNotFoundProgramsLabel ); - lNotFoundPrograms = new KListBox( parent, "lNotFoundPrograms" ); + lNotFoundPrograms = new TDEListBox( parent, "lNotFoundPrograms" ); lNotFoundPrograms->setSelectionMode( TQListBox::NoSelection ); notFoundProgramsBox->addWidget( lNotFoundPrograms ); //connect(lPrograms,TQT_SIGNAL(highlighted(int)),this,TQT_SLOT(programsSelectionChanged(int))); |