[Kstars-devel] branches/kstars/summer/kstars/kstars/comast
Prakash Mohan
prak902000 at gmail.com
Sat Jul 25 23:49:04 CEST 2009
SVN commit 1002405 by prakash:
The findObserverName() function should function with the full name, which is the Name + Surname
CCMAIL: kstars-devel at kde.org
M +1 -1 log.cpp
--- branches/kstars/summer/kstars/kstars/comast/log.cpp #1002404:1002405
@@ -867,7 +867,7 @@
Comast::Observer* Comast::Log::findObserverByName( QString id ) {
foreach( Comast::Observer *obs, *observerList() )
- if( obs->name() == id )
+ if( obs->name() + obs->surname() == id )
return obs;
return NULL;
}
More information about the Kstars-devel
mailing list