summaryrefslogtreecommitdiff
path: root/core/applets/restartapplet/restart.cpp
Side-by-side diff
Diffstat (limited to 'core/applets/restartapplet/restart.cpp') (more/less context) (show whitespace changes)
-rw-r--r--core/applets/restartapplet/restart.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/core/applets/restartapplet/restart.cpp b/core/applets/restartapplet/restart.cpp
index 226c2a8..2e17608 100644
--- a/core/applets/restartapplet/restart.cpp
+++ b/core/applets/restartapplet/restart.cpp
@@ -50,23 +50,21 @@ static char *restart_xpm[] = {
" .. ",
" "};
RestartApplet::RestartApplet( QWidget *parent, const char *name )
: QWidget( parent, name ) {
setFixedHeight( 18 );
setFixedWidth( 16 );
- qDebug("new restartapplet");
show();
}
RestartApplet::~RestartApplet() {
}
void RestartApplet::mousePressEvent( QMouseEvent *) {
QCopEnvelope e("QPE/System", "restart()");
}
void RestartApplet::paintEvent( QPaintEvent* ) {
QPainter p(this);
- qDebug("paint RESTART pixmap");
p.drawPixmap( 0, 1, ( const char** ) restart_xpm );
}