summaryrefslogtreecommitdiff
path: root/core/applets/suspendapplet
Unidiff
Diffstat (limited to 'core/applets/suspendapplet') (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/suspendapplet/suspend.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/applets/suspendapplet/suspend.cpp b/core/applets/suspendapplet/suspend.cpp
index 5966a84..e9861e8 100644
--- a/core/applets/suspendapplet/suspend.cpp
+++ b/core/applets/suspendapplet/suspend.cpp
@@ -18,7 +18,7 @@ SuspendApplet::~SuspendApplet ( )
18 18
19int SuspendApplet::position ( ) const 19int SuspendApplet::position ( ) const
20{ 20{
21 return 0; 21 return 2;
22} 22}
23 23
24QString SuspendApplet::name ( ) const 24QString SuspendApplet::name ( ) const
@@ -34,10 +34,10 @@ QString SuspendApplet::text ( ) const
34QIconSet SuspendApplet::icon ( ) const 34QIconSet SuspendApplet::icon ( ) const
35{ 35{
36 QPixmap pix; 36 QPixmap pix;
37 QImage img = Resource::loadImage ( "Shutdown" ); 37 QImage img = Resource::loadImage ( "suspend" );
38 38
39 if ( !img. isNull ( )) 39 if ( !img. isNull ( ))
40 pix. convertFromImage ( img. smoothScale ( 16, 16 )); 40 pix. convertFromImage ( img. smoothScale ( 14, 14 ));
41 return pix; 41 return pix;
42} 42}
43 43