diff options
author | gregory guy <[email protected]> | 2020-06-13 16:33:09 +0200 |
---|---|---|
committer | gregory guy <[email protected]> | 2020-06-13 16:33:09 +0200 |
commit | 12b478cefdf1789828dbcd677d409cf8bad654ca (patch) | |
tree | e0fd4a3b7a3d5b64ede310493a7b25624807f8b1 /src/app/listView.cpp | |
parent | 2c9bc9b806f533df7b8f5349467d0f4be95314a4 (diff) | |
download | codeine-12b478cefdf1789828dbcd677d409cf8bad654ca.tar.gz codeine-12b478cefdf1789828dbcd677d409cf8bad654ca.zip |
Conversion KDE -> TDE environment.
Signed-off-by: gregory guy <[email protected]>
Diffstat (limited to 'src/app/listView.cpp')
-rw-r--r-- | src/app/listView.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/app/listView.cpp b/src/app/listView.cpp index e5dd74a..63a6abf 100644 --- a/src/app/listView.cpp +++ b/src/app/listView.cpp @@ -4,14 +4,14 @@ #ifndef CODEINELISTVIEW_CPP
#define CODEINELISTVIEW_CPP
-#include <klistview.h>
+#include <tdelistview.h>
namespace Codeine
{
- class ListView : public KListView
+ class ListView : public TDEListView
{
public:
- ListView( TQWidget *parent ) : KListView( parent )
+ ListView( TQWidget *parent ) : TDEListView( parent )
{
addColumn( TQString::null, 0 );
addColumn( TQString::null );
@@ -26,7 +26,7 @@ namespace Codeine virtual TQSize sizeHint() const
{
- const TQSize sh = KListView::sizeHint();
+ const TQSize sh = TDEListView::sizeHint();
return TQSize( sh.width(),
childCount() == 0
|