BB10: Qt: Gotta love errors like this

make[2]: *** [o-g/.moc/moc_Model.cpp] Error 1
make[1]: *** [debug] Error 2
make: *** [Simulator-Debug] Error 2

Awesome.

Dear Qt folks: Thanks for the super clear error message.

Finally figured it out. I had written:

Q_PROPERTY(int name1Visible READ)

Instead of:

Q_PROPERTY(int name1Visible READ name1Visible)

But yeah, completely non descriptive errors like that are not fun. One of the disadvantages of using macros so heavily, which Qt does.