summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2011-10-01 12:22:33 (GMT)
committerRemko Tronçon <git@el-tramo.be>2011-10-01 12:22:33 (GMT)
commita9a3aa76610ba33d571c8d0aee963668a7a00961 (patch)
tree2cffef0592fbeac610074e18953f4fbb9312e843 /Swift/QtUI/QtChatWindow.cpp
parentbfdba314e4a2f37eb2416fe0dbdbaa743098a17d (diff)
downloadswift-a9a3aa76610ba33d571c8d0aee963668a7a00961.zip
swift-a9a3aa76610ba33d571c8d0aee963668a7a00961.tar.bz2
Added actions icon.
Diffstat (limited to 'Swift/QtUI/QtChatWindow.cpp')
-rw-r--r--Swift/QtUI/QtChatWindow.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Swift/QtUI/QtChatWindow.cpp b/Swift/QtUI/QtChatWindow.cpp
index 07ff47e..50fe984 100644
--- a/Swift/QtUI/QtChatWindow.cpp
+++ b/Swift/QtUI/QtChatWindow.cpp
@@ -88,7 +88,8 @@ QtChatWindow::QtChatWindow(const QString &contact, QtChatTheme* theme, UIEventSt
setSubject("");
subject_->setReadOnly(true);
- actionButton_ = new QPushButton(tr("Actions"), this);
+ actionButton_ = new QPushButton(this);
+ actionButton_->setIcon(QIcon(":/icons/actions.png"));
connect(actionButton_, SIGNAL(clicked()), this, SLOT(handleActionButtonClicked()));
subjectLayout->addWidget(actionButton_);