Re: [Interest] QSqlTableModel and transactions

2013-01-05 Thread Petric Frank
Hello Mark, Am Freitag, 4. Januar 2013, 13:23:59 schrieb Petric Frank: > > > NB.: If i do a revert or select call on QSqlDatabase having > > > un-submitted data after the rollback i get a 'Vector index out of > > > range' trap from inside the qt-lib. This might be a coding error of > > > me. But i

Re: [Interest] Problems porting to Qt5

2013-01-05 Thread Thiago Macieira
On sábado, 5 de janeiro de 2013 23.15.51, Christoph Feck wrote: > > Oxygen is a native Qt style. > > Sorry, it's not. That depends on your definition of "native Qt style". It's implemented using Qt, by providing a proper QStyle, therefore it is native. Oppose that to foreign styles, like Gtk, Win

Re: [Interest] Problems porting to Qt5

2013-01-05 Thread Christoph Feck
On Saturday 05 January 2013 22:59:54 Nikos Chantziaras wrote: > On 05/01/13 23:53, Christoph Feck wrote: > > On Friday 04 January 2013 21:42:59 Nikos Chantziaras wrote: > >> I'm not using anything from KDE, actually. The application > >> compiles just fine with Qt5. The whole point is that Qt5 >

Re: [Interest] Problems porting to Qt5

2013-01-05 Thread Nikos Chantziaras
On 05/01/13 23:53, Christoph Feck wrote: > On Friday 04 January 2013 21:42:59 Nikos Chantziaras wrote: >> I'm not using anything from KDE, actually. The application >> compiles just fine with Qt5. The whole point is that Qt5 >> applications don't have a native look under KDE. > > If you mean the

Re: [Interest] Problems porting to Qt5

2013-01-05 Thread Christoph Feck
On Friday 04 January 2013 21:42:59 Nikos Chantziaras wrote: > I'm not using anything from KDE, actually. The application > compiles just fine with Qt5. The whole point is that Qt5 > applications don't have a native look under KDE. If you mean the Oxygen look, then yes, your application uses part

Re: [Interest] Qt 5 and filesystem

2013-01-05 Thread Andre Somers
Op 5-1-2013 6:57, Jason H schreef: Why isn't there a proxy? Because these only exist on QGraphicsView (and were not that great an idea there either, for that matter). André ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.or

Re: [Interest] qRegisterMetaType > and type flags

2013-01-05 Thread Thiago Macieira
On sábado, 5 de janeiro de 2013 12.39.16, Jan Kundrát wrote: > On Saturday, 5 January 2013 03:12:48 CEST, Thiago Macieira wrote: > >> - qRegisterMetatype(); > >> - using namespace NS; qRegisterMetaType(); > >> - namespace NS { void reg() { qRegisterMetaType(); } } NS::reg(); > >> - typedef NS::Clas

[Interest] Re: qRegisterMetaType > and type flags

2013-01-05 Thread Jan Kundrát
On Saturday, 5 January 2013 03:12:48 CEST, Thiago Macieira wrote: >> - qRegisterMetatype(); >> - using namespace NS; qRegisterMetaType(); >> - namespace NS { void reg() { qRegisterMetaType(); } } NS::reg(); >> - typedef NS::Class Class; qRegisterMetaType(); > > Why don't they work? I need these fo