summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/ipodexport/ipodlistitem.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-18 06:46:40 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-18 06:46:40 +0000
commit7c19562ad065b6729bac8eb9b40dfe0452a72272 (patch)
tree33325d1e02ecc9ca614c7209296f8f796a1c3478 /kipi-plugins/ipodexport/ipodlistitem.cpp
parenta65baa328fac0a1ce12971fef8d998ce7bfbe237 (diff)
downloadkipi-plugins-7c19562ad065b6729bac8eb9b40dfe0452a72272.tar.gz
kipi-plugins-7c19562ad065b6729bac8eb9b40dfe0452a72272.zip
TQt4 port kipi-plugins
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/libraries/kipi-plugins@1232561 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kipi-plugins/ipodexport/ipodlistitem.cpp')
-rw-r--r--kipi-plugins/ipodexport/ipodlistitem.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kipi-plugins/ipodexport/ipodlistitem.cpp b/kipi-plugins/ipodexport/ipodlistitem.cpp
index 6c6d950..4fd15ce 100644
--- a/kipi-plugins/ipodexport/ipodlistitem.cpp
+++ b/kipi-plugins/ipodexport/ipodlistitem.cpp
@@ -22,8 +22,8 @@ using namespace IpodExport;
/// Class IpodAlbumItem
////////////////////////////////////////////
-IpodAlbumItem::IpodAlbumItem( QListView *parent, QListViewItem *after, Itdb_PhotoAlbum *pa )
- : KListViewItem( parent, after )
+IpodAlbumItem::IpodAlbumItem( TQListView *tqparent, TQListViewItem *after, Itdb_PhotoAlbum *pa )
+ : KListViewItem( tqparent, after )
, m_photoAlbum( pa )
{
// don't use setName, as it writes to the ipod
@@ -38,7 +38,7 @@ void IpodAlbumItem::setPhotoAlbum( Itdb_PhotoAlbum *pa )
m_photoAlbum = pa;
}
-void IpodAlbumItem::setName( const QString & name )
+void IpodAlbumItem::setName( const TQString & name )
{
if( name == m_name )
return;
@@ -55,9 +55,9 @@ void IpodAlbumItem::setName( const QString & name )
/// Class IpodPhotoItem
////////////////////////////////////////////
-IpodPhotoItem::IpodPhotoItem( IpodAlbumItem *parent, IpodPhotoItem *after,
+IpodPhotoItem::IpodPhotoItem( IpodAlbumItem *tqparent, IpodPhotoItem *after,
Itdb_Artwork *art )
- : KListViewItem( parent, after )
+ : KListViewItem( tqparent, after )
, m_artwork( art )
{
}