author | harlekin <harlekin> | 2003-03-31 16:52:59 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2003-03-31 16:52:59 (UTC) |
commit | f23b042e2ac0a8b31a51c1059dee281156dd5ce9 (patch) (unidiff) | |
tree | 46c82859209ff014b197605f8d8909f933ffc7f2 | |
parent | f3b37f3dd4ae27e809415af67dd4df052d72d076 (diff) | |
download | opie-f23b042e2ac0a8b31a51c1059dee281156dd5ce9.zip opie-f23b042e2ac0a8b31a51c1059dee281156dd5ce9.tar.gz opie-f23b042e2ac0a8b31a51c1059dee281156dd5ce9.tar.bz2 |
rotate applet between desktop and suspend and not suspend and logout
-rw-r--r-- | core/applets/rotateapplet/rotate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/applets/rotateapplet/rotate.cpp b/core/applets/rotateapplet/rotate.cpp index 42406da..0ead016 100644 --- a/core/applets/rotateapplet/rotate.cpp +++ b/core/applets/rotateapplet/rotate.cpp | |||
@@ -28,49 +28,49 @@ | |||
28 | 28 | ||
29 | 29 | ||
30 | #include <qpe/resource.h> | 30 | #include <qpe/resource.h> |
31 | #include <qpe/qcopenvelope_qws.h> | 31 | #include <qpe/qcopenvelope_qws.h> |
32 | 32 | ||
33 | #include <qpe/qpeapplication.h> | 33 | #include <qpe/qpeapplication.h> |
34 | #include <qpe/config.h> | 34 | #include <qpe/config.h> |
35 | #include <qiconset.h> | 35 | #include <qiconset.h> |
36 | #include <qpopupmenu.h> | 36 | #include <qpopupmenu.h> |
37 | 37 | ||
38 | #include "rotate.h" | 38 | #include "rotate.h" |
39 | 39 | ||
40 | 40 | ||
41 | RotateApplet::RotateApplet ( ) | 41 | RotateApplet::RotateApplet ( ) |
42 | : QObject ( 0, "RotateApplet" ), ref ( 0 ), m_flipped( false ) | 42 | : QObject ( 0, "RotateApplet" ), ref ( 0 ), m_flipped( false ) |
43 | { | 43 | { |
44 | } | 44 | } |
45 | 45 | ||
46 | RotateApplet::~RotateApplet ( ) | 46 | RotateApplet::~RotateApplet ( ) |
47 | { | 47 | { |
48 | } | 48 | } |
49 | 49 | ||
50 | int RotateApplet::position ( ) const | 50 | int RotateApplet::position ( ) const |
51 | { | 51 | { |
52 | return 2; | 52 | return 3; |
53 | } | 53 | } |
54 | 54 | ||
55 | QString RotateApplet::name ( ) const | 55 | QString RotateApplet::name ( ) const |
56 | { | 56 | { |
57 | return tr( "Rotate shortcut" ); | 57 | return tr( "Rotate shortcut" ); |
58 | } | 58 | } |
59 | 59 | ||
60 | QString RotateApplet::text ( ) const | 60 | QString RotateApplet::text ( ) const |
61 | { | 61 | { |
62 | return tr( "Rotate" ); | 62 | return tr( "Rotate" ); |
63 | } | 63 | } |
64 | 64 | ||
65 | QString RotateApplet::tr( const char* s ) const | 65 | QString RotateApplet::tr( const char* s ) const |
66 | { | 66 | { |
67 | return qApp->translate( "RotateApplet", s, 0 ); | 67 | return qApp->translate( "RotateApplet", s, 0 ); |
68 | } | 68 | } |
69 | 69 | ||
70 | QString RotateApplet::tr( const char* s, const char* p ) const | 70 | QString RotateApplet::tr( const char* s, const char* p ) const |
71 | { | 71 | { |
72 | return qApp->translate( "RotateApplet", s, p ); | 72 | return qApp->translate( "RotateApplet", s, p ); |
73 | } | 73 | } |
74 | 74 | ||
75 | QIconSet RotateApplet::icon ( ) const | 75 | QIconSet RotateApplet::icon ( ) const |
76 | { | 76 | { |