summaryrefslogtreecommitdiffstats
path: root/kontact/interfaces/summary.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-02-16 20:17:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-02-16 20:17:18 +0000
commitf4fae92b6768541e2952173c3d4b09040f95bf7e (patch)
treed8c5d93232235cd635f3310b4d95490df181ba2d /kontact/interfaces/summary.cpp
parent125c0a08265b75a133644d3b55f47e37c919f45d (diff)
downloadtdepim-f4fae92b6768541e2952173c3d4b09040f95bf7e.tar.gz
tdepim-f4fae92b6768541e2952173c3d4b09040f95bf7e.zip
Moved kpilot from kdepim to applications, as the core Trinity libraries should not contain hardware-dependent software
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1221127 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kontact/interfaces/summary.cpp')
-rw-r--r--kontact/interfaces/summary.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/kontact/interfaces/summary.cpp b/kontact/interfaces/summary.cpp
index da978d6e..86902ca0 100644
--- a/kontact/interfaces/summary.cpp
+++ b/kontact/interfaces/summary.cpp
@@ -55,20 +55,20 @@ TQWidget* Summary::createHeader(TQWidget *parent, const TQPixmap& icon, const TQ
TQLabel *label = new TQLabel( hbox );
label->setPixmap( icon );
- label->setFixedSize( label->sizeHint() );
- label->setPaletteBackgroundColor( colorGroup().mid() );
+ label->setFixedSize( label->tqsizeHint() );
+ label->setPaletteBackgroundColor( tqcolorGroup().mid() );
label->setAcceptDrops( true );
label = new TQLabel( heading, hbox );
- label->setAlignment( AlignLeft|AlignVCenter );
+ label->tqsetAlignment( AlignLeft|AlignVCenter );
label->setIndent( KDialog::spacingHint() );
label->setFont( boldFont );
- label->setPaletteForegroundColor( colorGroup().light() );
- label->setPaletteBackgroundColor( colorGroup().mid() );
+ label->setPaletteForegroundColor( tqcolorGroup().light() );
+ label->setPaletteBackgroundColor( tqcolorGroup().mid() );
- hbox->setPaletteBackgroundColor( colorGroup().mid() );
+ hbox->setPaletteBackgroundColor( tqcolorGroup().mid() );
- hbox->setMaximumHeight( hbox->minimumSizeHint().height() );
+ hbox->setMaximumHeight( hbox->tqminimumSizeHint().height() );
return hbox;
}
@@ -109,8 +109,8 @@ void Summary::dragEnterEvent( TQDragEnterEvent *event )
void Summary::dropEvent( TQDropEvent *event )
{
- int alignment = (event->pos().y() < (height() / 2) ? Qt::AlignTop : Qt::AlignBottom);
- emit summaryWidgetDropped( this, event->source(), alignment );
+ int tqalignment = (event->pos().y() < (height() / 2) ? Qt::AlignTop : Qt::AlignBottom);
+ emit summaryWidgetDropped( this, event->source(), tqalignment );
}
#include "summary.moc"