diff options
author | Timothy Pearson <[email protected]> | 2013-02-01 15:05:56 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-01 15:05:56 -0600 |
commit | 2a081fc8bfcf498b558c5c5434069572f6245b8e (patch) | |
tree | afad48e0a2769d1079cbc6af0d890bd2e0e1dbbf /wineconfig | |
parent | 671df160874c6e4ff50b230a5e5f1eb35f1c6464 (diff) | |
download | tde-guidance-2a081fc8bfcf498b558c5c5434069572f6245b8e.tar.gz tde-guidance-2a081fc8bfcf498b558c5c5434069572f6245b8e.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'wineconfig')
-rwxr-xr-x | wineconfig/wineconfig.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wineconfig/wineconfig.py b/wineconfig/wineconfig.py index ca4719e..2d6e894 100755 --- a/wineconfig/wineconfig.py +++ b/wineconfig/wineconfig.py @@ -533,7 +533,7 @@ class DrivesPage(QWidget): spacer = QWidget(vbox2) vbox2.setStretchFactor(spacer,1) - self.driveslist = KListView(vbox2) + self.driveslist = TDEListView(vbox2) self.driveslist.addColumn(i18n("Directory")) self.driveslist.addColumn(i18n("Links to")) self.driveslist.setAllColumnsShowFocus(True) @@ -2976,7 +2976,7 @@ class ApplicationsPage(QWidget): applicationstext = QLabel(vbox2,"applicationstext") applicationstext.setText(i18n("Change application specific settings for:")) - self.appslist = KListBox(vbox2) + self.appslist = TDEListBox(vbox2) self.connect(self.appslist, SIGNAL("selectionChanged(QListBoxItem *)"), self.slotListClicked) hbox = QHBox(vbox2) @@ -3381,7 +3381,7 @@ class LibrariesPage(QWidget): hbox = QHBox(vbox2) hbox.setSpacing(KDialog.spacingHint()) - self.dllslist = KListView(hbox) + self.dllslist = TDEListView(hbox) self.dllslist.addColumn(i18n("Library")) self.dllslist.addColumn(i18n("Load Order")) self.dllslist.setAllColumnsShowFocus(True) |