[Kstars-devel] KDE/kdeedu/kstars/kstars/widgets
Jason Harris
kstars at 30doradus.org
Sat Dec 31 07:08:52 CET 2005
SVN commit 492778 by harris:
Fix timeBox constructor (removed deprecated 'const char *name'
parameter)
CCMAIL: kstars-devel at kde.org
M +1 -1 timebox.cpp
M +1 -1 timebox.h
--- trunk/KDE/kdeedu/kstars/kstars/widgets/timebox.cpp #492777:492778
@@ -24,7 +24,7 @@
#include <stdlib.h>
#include <kdebug.h>
-timeBox::timeBox(QWidget *parent, const char *name, bool tt) : QLineEdit(parent,name)
+timeBox::timeBox(QWidget *parent, bool tt) : QLineEdit(parent)
{
if (tt) {
--- trunk/KDE/kdeedu/kstars/kstars/widgets/timebox.h #492777:492778
@@ -43,7 +43,7 @@
* @param tt boolean. true means that the object will hold a Time.
* false means that the object will hold a Date.
*/
- timeBox(QWidget *parent, const char *n, bool tt=TRUE);
+ timeBox(QWidget *parent, bool tt=TRUE);
~timeBox();
More information about the Kstars-devel
mailing list