]> Git trees. - libqmvoc.git/commitdiff
Another signal/slot fix in ExtDateTimeEdit
authorJason Harris <kstars@30doradus.org>
Thu, 21 Dec 2006 04:51:04 +0000 (04:51 +0000)
committerJason Harris <kstars@30doradus.org>
Thu, 21 Dec 2006 04:51:04 +0000 (04:51 +0000)
svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=615325

extdate/extdatetimeedit.cpp

index f5469628ecd28735f6b550e7c74f5052f6155e1c..504634570e6e7c17fdf1783ec1f5e0d1aac3f812 100644 (file)
@@ -61,8 +61,8 @@ void ExtDateEdit::init( const ExtDate &d ) {
        m_DateFormat.replace( "e", "d" );
 
        //Make sure highlight is persistent when value is changed
+       connect( this, SIGNAL( valueChanged( int ) ), this, SLOT( slotEmitDateChanged() ) );
        connect( this, SIGNAL( dateChanged( const ExtDate & ) ), this, SLOT( slotRefreshHighlight() ) );
-       connect( this, SIGNAL( dateChanged( const ExtDate & ) ), this, SLOT( slotEmitDateChanged() ) );
 
        edLineEdit *edle = new edLineEdit( this );
        setLineEdit(edle);