summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2002-10-31 12:52:41 (UTC)
committer llornkcor <llornkcor>2002-10-31 12:52:41 (UTC)
commitf6ca21ad98c7af99c0ae4c04afe3c2126317d6de (patch) (unidiff)
tree5b171991ec2f4b8e607ba751fb1b5a3432dba76d
parent4287f9892d5fd18ace4e1fbd55d4731b7e2b1429 (diff)
downloadopie-f6ca21ad98c7af99c0ae4c04afe3c2126317d6de.zip
opie-f6ca21ad98c7af99c0ae4c04afe3c2126317d6de.tar.gz
opie-f6ca21ad98c7af99c0ae4c04afe3c2126317d6de.tar.bz2
parent is now this, not 0
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/screenshotapplet/screenshot.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/applets/screenshotapplet/screenshot.cpp b/core/applets/screenshotapplet/screenshot.cpp
index 4ebdb7a..98f2c9e 100644
--- a/core/applets/screenshotapplet/screenshot.cpp
+++ b/core/applets/screenshotapplet/screenshot.cpp
@@ -260,47 +260,47 @@ void ScreenshotControl::performGrab() {
260 qDebug("running command "+cmd); 260 qDebug("running command "+cmd);
261 261
262 system(cmd.latin1()); 262 system(cmd.latin1());
263 show(); 263 show();
264 } 264 }
265 265
266} 266}
267 267
268void ScreenshotControl::setTime(int newTime) { 268void ScreenshotControl::setTime(int newTime) {
269 delaySpin->setValue(newTime); 269 delaySpin->setValue(newTime);
270} 270}
271 271
272void ScreenshotControl::nameScreenshot(bool b) { 272void ScreenshotControl::nameScreenshot(bool b) {
273 273
274 274
275} 275}
276 276
277//=========================================================================== 277//===========================================================================
278 278
279ScreenshotApplet::ScreenshotApplet( QWidget *parent, const char *name ) 279ScreenshotApplet::ScreenshotApplet( QWidget *parent, const char *name )
280 : QWidget( parent, name ) { 280 : QWidget( parent, name ) {
281// qDebug("beginning applet"); 281// qDebug("beginning applet");
282 setFixedHeight( 18 ); 282 setFixedHeight( 18 );
283 setFixedWidth( 14 ); 283 setFixedWidth( 14 );
284 vc = new ScreenshotControl; 284 vc = new ScreenshotControl(this,"ScreenshotApplet");;
285// qDebug("new screenshotapplet"); 285// qDebug("new screenshotapplet");
286} 286}
287 287
288ScreenshotApplet::~ScreenshotApplet() { 288ScreenshotApplet::~ScreenshotApplet() {
289} 289}
290 290
291void ScreenshotApplet::mousePressEvent( QMouseEvent *) { 291void ScreenshotApplet::mousePressEvent( QMouseEvent *) {
292// if(!vc) 292// if(!vc)
293 vc = new ScreenshotControl; 293 vc = new ScreenshotControl;
294 QPoint curPos = mapToGlobal( rect().topLeft() ); 294 QPoint curPos = mapToGlobal( rect().topLeft() );
295 vc->move( curPos.x()-(vc->sizeHint().width()-width())/2, curPos.y() - 100 ); 295 vc->move( curPos.x()-(vc->sizeHint().width()-width())/2, curPos.y() - 100 );
296 vc->show(); 296 vc->show();
297 297
298} 298}
299 299
300void ScreenshotApplet::paintEvent( QPaintEvent* ) { 300void ScreenshotApplet::paintEvent( QPaintEvent* ) {
301 QPainter p(this); 301 QPainter p(this);
302 qDebug("paint pixmap"); 302 qDebug("paint pixmap");
303 p.drawPixmap( 0, 1, ( const char** ) snapshot_xpm ); 303 p.drawPixmap( 0, 1, ( const char** ) snapshot_xpm );
304 304
305} 305}
306 306