-rw-r--r-- | bin/kdepim/WhatsNew.txt | 2 | ||||
-rw-r--r-- | kalarmd/simplealarmdaemonapplet.cpp | 6 |
2 files changed, 3 insertions, 5 deletions
diff --git a/bin/kdepim/WhatsNew.txt b/bin/kdepim/WhatsNew.txt index df0b2eb..6a9a200 100644 --- a/bin/kdepim/WhatsNew.txt +++ b/bin/kdepim/WhatsNew.txt | |||
@@ -3,25 +3,25 @@ Info about the changes in new versions of KDE-Pim/Pi | |||
3 | ********** VERSION 1.9.16 ************ | 3 | ********** VERSION 1.9.16 ************ |
4 | 4 | ||
5 | KO/Pi: | 5 | KO/Pi: |
6 | Fixed search dialog size on Z 6000 (480x640 display). | 6 | Fixed search dialog size on Z 6000 (480x640 display). |
7 | Added setting to hide/show time in agenda items. | 7 | Added setting to hide/show time in agenda items. |
8 | Added setting to hide not running todos in todo view. | 8 | Added setting to hide not running todos in todo view. |
9 | Added columns for start date/time in todo view. | 9 | Added columns for start date/time in todo view. |
10 | Replaced the solid half-hour lines in agenda view by dot lines. | 10 | Replaced the solid half-hour lines in agenda view by dot lines. |
11 | Fixed some minor problems. (Like word wrap in help text windows). | 11 | Fixed some minor problems. (Like word wrap in help text windows). |
12 | 12 | ||
13 | Fixed a strange problem in KO/Pi alarm applet. | 13 | Fixed a strange problem in KO/Pi alarm applet. |
14 | Did not find the actual problem, | 14 | Did not find the actual problem, |
15 | such that now Qtopia reboots if deinstalling the alarm applet. | 15 | such that now Qtopia reboots again if deinstalling the alarm applet. |
16 | But the alarm applet should work again. | 16 | But the alarm applet should work again. |
17 | 17 | ||
18 | 18 | ||
19 | ********** VERSION 1.9.15 ************ | 19 | ********** VERSION 1.9.15 ************ |
20 | 20 | ||
21 | Usebilty enhancements in KO/Pi: | 21 | Usebilty enhancements in KO/Pi: |
22 | When clicking on the date in a month view cell, the day view is shown. | 22 | When clicking on the date in a month view cell, the day view is shown. |
23 | Old behaviour was, that the "new event" dialog popped up. | 23 | Old behaviour was, that the "new event" dialog popped up. |
24 | 24 | ||
25 | Added a one step "undo delete" in KO/Pi (Accessable in the "Action" menu). | 25 | Added a one step "undo delete" in KO/Pi (Accessable in the "Action" menu). |
26 | That means, you can restore the latest | 26 | That means, you can restore the latest |
27 | event/todo/journal you have deleted. | 27 | event/todo/journal you have deleted. |
diff --git a/kalarmd/simplealarmdaemonapplet.cpp b/kalarmd/simplealarmdaemonapplet.cpp index 3277036..73b1e07 100644 --- a/kalarmd/simplealarmdaemonapplet.cpp +++ b/kalarmd/simplealarmdaemonapplet.cpp | |||
@@ -5,25 +5,25 @@ | |||
5 | #include <qcopchannel_qws.h> | 5 | #include <qcopchannel_qws.h> |
6 | #include <qlabel.h> | 6 | #include <qlabel.h> |
7 | #include <qapp.h> | 7 | #include <qapp.h> |
8 | #include <qpe/resource.h> | 8 | #include <qpe/resource.h> |
9 | SimpleAlarmDaemonApplet::SimpleAlarmDaemonApplet() | 9 | SimpleAlarmDaemonApplet::SimpleAlarmDaemonApplet() |
10 | : mApplet( 0 ), ref( 0 ) | 10 | : mApplet( 0 ), ref( 0 ) |
11 | { | 11 | { |
12 | 12 | ||
13 | } | 13 | } |
14 | 14 | ||
15 | SimpleAlarmDaemonApplet::~SimpleAlarmDaemonApplet() | 15 | SimpleAlarmDaemonApplet::~SimpleAlarmDaemonApplet() |
16 | { | 16 | { |
17 | //delete mApplet; | 17 | delete mApplet; |
18 | mApplet = 0; | 18 | mApplet = 0; |
19 | } | 19 | } |
20 | 20 | ||
21 | 21 | ||
22 | QWidget *SimpleAlarmDaemonApplet::applet( QWidget *parent ) | 22 | QWidget *SimpleAlarmDaemonApplet::applet( QWidget *parent ) |
23 | { | 23 | { |
24 | if ( !mApplet ) { | 24 | if ( !mApplet ) { |
25 | mApplet = new SimpleAlarmDaemonImpl( parent ); | 25 | mApplet = new SimpleAlarmDaemonImpl( parent ); |
26 | if ( QApplication::desktop()->width() < 480 ) | 26 | if ( QApplication::desktop()->width() < 480 ) |
27 | mApplet->setPixmap( Resource::loadPixmap( "ko16" ) ); | 27 | mApplet->setPixmap( Resource::loadPixmap( "ko16" ) ); |
28 | else | 28 | else |
29 | mApplet->setPixmap( Resource::loadPixmap( "ko24" ) ); | 29 | mApplet->setPixmap( Resource::loadPixmap( "ko24" ) ); |
@@ -32,29 +32,27 @@ QWidget *SimpleAlarmDaemonApplet::applet( QWidget *parent ) | |||
32 | mApplet->show(); | 32 | mApplet->show(); |
33 | } | 33 | } |
34 | return mApplet; | 34 | return mApplet; |
35 | } | 35 | } |
36 | 36 | ||
37 | int SimpleAlarmDaemonApplet::position() const | 37 | int SimpleAlarmDaemonApplet::position() const |
38 | { | 38 | { |
39 | return 7; | 39 | return 7; |
40 | } | 40 | } |
41 | 41 | ||
42 | QRESULT SimpleAlarmDaemonApplet::queryInterface( const QUuid &uuid, QUnknownInterface **iface ) | 42 | QRESULT SimpleAlarmDaemonApplet::queryInterface( const QUuid &uuid, QUnknownInterface **iface ) |
43 | { | 43 | { |
44 | // qDebug(" SimpleAlarmDaemonApplet::queryInterface "); | ||
45 | *iface = 0; | 44 | *iface = 0; |
46 | if ( uuid == IID_QUnknown ) | 45 | if ( uuid == IID_QUnknown ) |
47 | *iface = this; | 46 | *iface = this; |
48 | else if ( uuid == IID_TaskbarApplet ) | 47 | else if ( uuid == IID_TaskbarApplet ) |
49 | *iface = this; | 48 | *iface = this; |
50 | |||
51 | if ( *iface ) { | 49 | if ( *iface ) { |
52 | (*iface)->addRef(); | 50 | (*iface)->addRef(); |
53 | return QS_OK; | 51 | return QS_OK; |
54 | } | 52 | } |
55 | return QE_NOINTERFACE; | 53 | return QS_FALSE; |
56 | } | 54 | } |
57 | Q_EXPORT_INTERFACE() | 55 | Q_EXPORT_INTERFACE() |
58 | { | 56 | { |
59 | Q_CREATE_INSTANCE( SimpleAlarmDaemonApplet ) | 57 | Q_CREATE_INSTANCE( SimpleAlarmDaemonApplet ) |
60 | } | 58 | } |