summaryrefslogtreecommitdiff
path: root/core
authorllornkcor <llornkcor>2002-10-31 12:52:41 (UTC)
committer llornkcor <llornkcor>2002-10-31 12:52:41 (UTC)
commitf6ca21ad98c7af99c0ae4c04afe3c2126317d6de (patch) (unidiff)
tree5b171991ec2f4b8e607ba751fb1b5a3432dba76d /core
parent4287f9892d5fd18ace4e1fbd55d4731b7e2b1429 (diff)
downloadopie-f6ca21ad98c7af99c0ae4c04afe3c2126317d6de.zip
opie-f6ca21ad98c7af99c0ae4c04afe3c2126317d6de.tar.gz
opie-f6ca21ad98c7af99c0ae4c04afe3c2126317d6de.tar.bz2
parent is now this, not 0
Diffstat (limited to 'core') (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
@@ -272,25 +272,25 @@ void ScreenshotControl::setTime(int newTime) {
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();