summaryrefslogtreecommitdiff
path: root/examples/todayplugin/examplepluginwidget.cpp
Unidiff
Diffstat (limited to 'examples/todayplugin/examplepluginwidget.cpp') (more/less context) (show whitespace changes)
-rw-r--r--examples/todayplugin/examplepluginwidget.cpp11
1 files changed, 1 insertions, 10 deletions
diff --git a/examples/todayplugin/examplepluginwidget.cpp b/examples/todayplugin/examplepluginwidget.cpp
index 14f1020..d66a11a 100644
--- a/examples/todayplugin/examplepluginwidget.cpp
+++ b/examples/todayplugin/examplepluginwidget.cpp
@@ -1,21 +1,12 @@
1/* 1/*
2 * examplepluginwidget.cpp 2 * examplepluginwidget.cpp
3 * 3 *
4 * copyright : (c) 2004 by Maximilian Reiß
5 * email : harlekin@handhelds.org 4 * email : harlekin@handhelds.org
6 * 5 *
7 */ 6 */
8/***************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 ***************************************************************************/
16 7
17#include <qpe/config.h> 8#include <qpe/config.h>
18#include <qpe/qcopenvelope_qws.h> 9#include <qpe/qcopenvelope_qws.h>
19 10
20#include "examplepluginwidget.h" 11#include "examplepluginwidget.h"
21 12
@@ -60,12 +51,12 @@ void ExamplePluginWidget::readConfig() {
60 51
61void ExamplePluginWidget::refresh() { 52void ExamplePluginWidget::refresh() {
62 53
63} 54}
64 55
65void ExamplePluginWidget::getInfo() { 56void ExamplePluginWidget::getInfo() {
66 m_exampleLabel->setText( "Example text" ); 57 m_exampleLabel->setText( tr("Example text") );
67} 58}
68 59
69void ExamplePluginWidget::slotClicked() { 60void ExamplePluginWidget::slotClicked() {
70 getInfo(); 61 getInfo();
71} 62}