diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-04 14:16:27 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-04 14:16:27 -0600 |
commit | 580d345952faf597f69347256e0ad3411725988a (patch) | |
tree | ff47470421577a3e0e9f387b324e184e4d008d53 /kpovmodeler/pmlibraryiconview.cpp | |
parent | 81576b133797828eaca3ac819f4adca21de8d327 (diff) | |
download | tdegraphics-580d345952faf597f69347256e0ad3411725988a.tar.gz tdegraphics-580d345952faf597f69347256e0ad3411725988a.zip |
Rename KIcon to enhance compatibility with KDE4
Diffstat (limited to 'kpovmodeler/pmlibraryiconview.cpp')
-rw-r--r-- | kpovmodeler/pmlibraryiconview.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kpovmodeler/pmlibraryiconview.cpp b/kpovmodeler/pmlibraryiconview.cpp index a0661059..78f13cef 100644 --- a/kpovmodeler/pmlibraryiconview.cpp +++ b/kpovmodeler/pmlibraryiconview.cpp @@ -105,7 +105,7 @@ void PMLibraryIconDrag::append( const TQIconDragItem &item, const TQRect &pr, } PMLibraryIconView::PMLibraryIconView( TQWidget* parent, const char* name ) - : KIconView( parent, name ) + : TDEIconView( parent, name ) { m_pLibrary = NULL; m_pCurrentLibrary = NULL; @@ -193,14 +193,14 @@ TQDragObject* PMLibraryIconView::dragObject( ) } PMLibraryIconViewItem::PMLibraryIconViewItem( TQIconView *parent, const TQString &text, const TQString& path, bool isSubLibrary ) - : KIconViewItem( parent, text ) + : TDEIconViewItem( parent, text ) { m_path = path; m_isSubLibrary = isSubLibrary; } PMLibraryIconViewItem::PMLibraryIconViewItem( TQIconView *parent, const TQString &text, const TQImage& image, const TQString& path, bool isSubLibrary ) - : KIconViewItem( parent, text, image ) + : TDEIconViewItem( parent, text, image ) { m_path = path; m_isSubLibrary = isSubLibrary; |