Revision: 6170
Author: nogu.dev
Date: Sat Feb 27 15:01:37 2010
Log: * qt4/candwin/qt4.cpp
- (CandidateWindow::CandidateWindow): Remove "QObject::".
Because the connect() function isn't overridden, it's meaningless.
http://code.google.com/p/uim/source/detail?r=6170
Modified:
/trunk/qt4/candwin/qt4.cpp
=======================================
--- /trunk/qt4/candwin/qt4.cpp Thu Feb 25 14:56:25 2010
+++ /trunk/qt4/candwin/qt4.cpp Sat Feb 27 15:01:37 2010
@@ -83,7 +83,7 @@
cList->setVScrollBarMode( Q3ScrollView::AlwaysOff );
cList->setHScrollBarMode( Q3ScrollView::AlwaysOff );
cList->setAllColumnsShowFocus( true );
- QObject::connect( cList, SIGNAL( clicked( Q3ListViewItem * ) ),
+ connect( cList, SIGNAL( clicked( Q3ListViewItem * ) ),
this , SLOT( slotCandidateSelected( Q3ListViewItem *
) ) );
//setup NumberLabel
@@ -98,7 +98,7 @@
isActive = false;
notifier = new QSocketNotifier( 0, QSocketNotifier::Read );
- QObject::connect( notifier, SIGNAL( activated( int ) ),
+ connect( notifier, SIGNAL( activated( int ) ),
this, SLOT( slotStdinActivated( int ) ) );
hide();
}