summaryrefslogtreecommitdiffstats
path: root/kaddressbook/imagewidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kaddressbook/imagewidget.cpp')
-rw-r--r--kaddressbook/imagewidget.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/kaddressbook/imagewidget.cpp b/kaddressbook/imagewidget.cpp
index 4a8ab340..0dc83ae4 100644
--- a/kaddressbook/imagewidget.cpp
+++ b/kaddressbook/imagewidget.cpp
@@ -17,8 +17,8 @@
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
As a special exception, permission is given to link this program
- with any edition of Qt, and distribute the resulting executable,
- without including the source code for Qt in the source distribution.
+ with any edition of TQt, and distribute the resulting executable,
+ without including the source code for TQt in the source distribution.
*/
#include <kabc/picture.h>
@@ -47,8 +47,8 @@
#include "imagewidget.h"
-ImageLoader::ImageLoader( TQWidget *parent )
- : TQObject( 0, "ImageLoader" ), mParent( parent )
+ImageLoader::ImageLoader( TQWidget *tqparent )
+ : TQObject( 0, "ImageLoader" ), mParent( tqparent )
{
}
@@ -103,8 +103,8 @@ KABC::Picture ImageLoader::loadPicture( const KURL &url, bool *ok )
}
-ImageButton::ImageButton( const TQString &title, TQWidget *parent )
- : TQPushButton( title, parent ),
+ImageButton::ImageButton( const TQString &title, TQWidget *tqparent )
+ : TQPushButton( title, tqparent ),
mReadOnly( false ), mImageLoader( 0 )
{
setAcceptDrops( true );
@@ -247,14 +247,14 @@ void ImageButton::clear()
}
ImageBaseWidget::ImageBaseWidget( const TQString &title,
- TQWidget *parent, const char *name )
- : TQWidget( parent, name ), mReadOnly( false )
+ TQWidget *tqparent, const char *name )
+ : TQWidget( tqparent, name ), mReadOnly( false )
{
mImageLoader = new ImageLoader( this );
TQVBoxLayout *topLayout = new TQVBoxLayout( this, KDialog::marginHint(),
KDialog::spacingHint() );
- TQGroupBox *box = new TQGroupBox( 0, Qt::Vertical, title, this );
+ TQGroupBox *box = new TQGroupBox( 0, TQt::Vertical, title, this );
TQVBoxLayout *tqlayout = new TQVBoxLayout( box->tqlayout(), KDialog::spacingHint() );
mImageButton = new ImageButton( i18n( "Picture" ), box );
@@ -290,8 +290,8 @@ KABC::Picture ImageBaseWidget::image() const
}
-ImageWidget::ImageWidget( KABC::AddressBook *ab, TQWidget *parent, const char *name )
- : KAB::ContactEditorWidget( ab, parent, name )
+ImageWidget::ImageWidget( KABC::AddressBook *ab, TQWidget *tqparent, const char *name )
+ : KAB::ContactEditorWidget( ab, tqparent, name )
{
TQHBoxLayout *tqlayout = new TQHBoxLayout( this, KDialog::marginHint(),
KDialog::spacingHint() );