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/logviewer.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/logviewer.cpp')
-rwxr-xr-x | src/logviewer.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/logviewer.cpp b/src/logviewer.cpp index 765acf8..611b1fb 100755 --- a/src/logviewer.cpp +++ b/src/logviewer.cpp @@ -16,14 +16,14 @@ // ### soundkonverter 0.4: make sub items for the output -LogViewerItem::LogViewerItem( KListView* parent, LogViewerItem* after, TQString label1 ) - : KListViewItem( parent, after, label1 ) +LogViewerItem::LogViewerItem( TDEListView* parent, LogViewerItem* after, TQString label1 ) + : TDEListViewItem( parent, after, label1 ) { converting = false; } LogViewerItem::LogViewerItem( LogViewerItem* parent, LogViewerItem* after, TQString label1 ) - : KListViewItem( parent, after, label1 ) + : TDEListViewItem( parent, after, label1 ) { converting = false; } @@ -54,12 +54,12 @@ void LogViewerItem::paintCell( TQPainter *p, const TQColorGroup &cg, int column, return; } - KListViewItem::paintCell( p, _cg, column, width, alignment ); + TDEListViewItem::paintCell( p, _cg, column, width, alignment ); } LogViewerList::LogViewerList( TQWidget* parent, const char* name ) - : KListView( parent, name ) + : TDEListView( parent, name ) {} LogViewerList::~LogViewerList() |