Using Ubuntu 10.10 and qt 4.7.0, I could not compile the program from latest svn.
The problem are several default constructors in sqlitedb.h:
sqlitedb.h: In constructor ‘DBBrowserIndex::DBBrowserIndex()’:
sqlitedb.h:58: error: call of overloaded ‘QString(int)’ is ambiguous
I got it to compile and work by replacing the default constructor:
instead of
DBBrowserField() : name( 0 ) { }
write
DBBrowserField() : name( "0" ) { }
I'm not sure of any side effects, it works, it might be equivalent to qt 4.6.x behaviour.
evil_k..
Can u help with the git transition and hot fixes? Have u got permissions ?
mash
Fixed in svn/Head R68,