summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/sync/gallerywindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/sync/gallerywindow.cpp')
-rw-r--r--kipi-plugins/sync/gallerywindow.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kipi-plugins/sync/gallerywindow.cpp b/kipi-plugins/sync/gallerywindow.cpp
index ebaf53e..336e6d4 100644
--- a/kipi-plugins/sync/gallerywindow.cpp
+++ b/kipi-plugins/sync/gallerywindow.cpp
@@ -68,8 +68,8 @@
namespace KIPIGalleryExportPlugin
{
-GalleryWindow::GalleryWindow(KIPI::Interface* interface, TQWidget *tqparent, Galleries* pGalleries)
- : KDialogBase(tqparent, 0, true, i18n("Gallery Export"), Help|Close, Close, false),
+GalleryWindow::GalleryWindow(KIPI::Interface* interface, TQWidget *parent, Galleries* pGalleries)
+ : KDialogBase(parent, 0, true, i18n("Gallery Export"), Help|Close, Close, false),
m_interface(interface),
mpGalleries(pGalleries)
{
@@ -285,17 +285,17 @@ void GalleryWindow::slotAlbums( const TQValueList<GAlbum>& albumList )
}
else
{
- TQListViewItem* tqparent = m_albumDict.find( album.parent_ref_num );
- if ( tqparent )
+ TQListViewItem* parent = m_albumDict.find( album.parent_ref_num );
+ if ( parent )
{
- GAlbumViewItem* item = new GAlbumViewItem( tqparent, album.title,
+ GAlbumViewItem* item = new GAlbumViewItem( parent, album.title,
album);
item->setPixmap( 0, pix );
m_albumDict.insert( album.ref_num, item );
}
else
{
- kdWarning() << "Failed to find tqparent for album "
+ kdWarning() << "Failed to find parent for album "
<< album.name
<< " with id " << album.ref_num << "\n";
}