Mailinglist Archive: yast-commit (687 mails)
| < Previous | Next > |
[yast-commit] r43495 - in /trunk/qt/src: YQUI.h YQUI_core.cc
- From: coolo@xxxxxxxxxxxxxxxx
- Date: Wed, 09 Jan 2008 13:52:17 -0000
- Message-id: <20080109135218.0C22912E116@xxxxxxxxxxxxxxxx>
Author: coolo
Date: Wed Jan 9 14:52:17 2008
New Revision: 43495
URL: http://svn.opensuse.org/viewcvs/yast?rev=43495&view=rev
Log:
commiting the stuff I did while hunting the pure virtual
Modified:
trunk/qt/src/YQUI.h
trunk/qt/src/YQUI_core.cc
Modified: trunk/qt/src/YQUI.h
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/qt/src/YQUI.h?rev=43495&r1=43494&r2=43495&view=diff
==============================================================================
--- trunk/qt/src/YQUI.h (original)
+++ trunk/qt/src/YQUI.h Wed Jan 9 14:52:17 2008
@@ -65,7 +65,7 @@
/**
* Destructor.
**/
- ~YQUI();
+ virtual ~YQUI();
/**
* Access the global Qt-UI.
@@ -265,7 +265,7 @@
*
* Reimplemented from YUI.
**/
- void idleLoop( int fd_ycp );
+ virtual void idleLoop( int fd_ycp );
/**
* Return a representation for the glyph symbol specified in UTF-8 encoding
Modified: trunk/qt/src/YQUI_core.cc
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/qt/src/YQUI_core.cc?rev=43495&r1=43494&r2=43495&view=diff
==============================================================================
--- trunk/qt/src/YQUI_core.cc (original)
+++ trunk/qt/src/YQUI_core.cc Wed Jan 9 14:52:17 2008
@@ -275,6 +275,9 @@
// Intentionally NOT calling dlclose() to libqt-mt
// (see constructor for explanation)
+
+ qApp->exit();
+ qApp->deleteLater();
}
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
Date: Wed Jan 9 14:52:17 2008
New Revision: 43495
URL: http://svn.opensuse.org/viewcvs/yast?rev=43495&view=rev
Log:
commiting the stuff I did while hunting the pure virtual
Modified:
trunk/qt/src/YQUI.h
trunk/qt/src/YQUI_core.cc
Modified: trunk/qt/src/YQUI.h
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/qt/src/YQUI.h?rev=43495&r1=43494&r2=43495&view=diff
==============================================================================
--- trunk/qt/src/YQUI.h (original)
+++ trunk/qt/src/YQUI.h Wed Jan 9 14:52:17 2008
@@ -65,7 +65,7 @@
/**
* Destructor.
**/
- ~YQUI();
+ virtual ~YQUI();
/**
* Access the global Qt-UI.
@@ -265,7 +265,7 @@
*
* Reimplemented from YUI.
**/
- void idleLoop( int fd_ycp );
+ virtual void idleLoop( int fd_ycp );
/**
* Return a representation for the glyph symbol specified in UTF-8 encoding
Modified: trunk/qt/src/YQUI_core.cc
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/qt/src/YQUI_core.cc?rev=43495&r1=43494&r2=43495&view=diff
==============================================================================
--- trunk/qt/src/YQUI_core.cc (original)
+++ trunk/qt/src/YQUI_core.cc Wed Jan 9 14:52:17 2008
@@ -275,6 +275,9 @@
// Intentionally NOT calling dlclose() to libqt-mt
// (see constructor for explanation)
+
+ qApp->exit();
+ qApp->deleteLater();
}
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
| < Previous | Next > |