cleanup extra ';'

This commit is contained in:
Marc Glisse 2010-04-24 09:29:32 +00:00
parent 8f3d2b6785
commit e9c6545787
2 changed files with 2 additions and 2 deletions

View File

@ -13,6 +13,6 @@ public:
};
Q_DECLARE_INTERFACE(Messages_interface,
"com.geometryfactory.PolyhedronDemo.MessagesInterface/1.0");
"com.geometryfactory.PolyhedronDemo.MessagesInterface/1.0")
#endif // MESSAGES_INTERFACE_H

View File

@ -13,7 +13,7 @@ namespace qglviewer {
// This class represents an object in the OpenGL scene
class SCENE_ITEM_EXPORT Scene_item : public QObject {
Q_OBJECT
Q_PROPERTY(QColor color READ color WRITE setColor);
Q_PROPERTY(QColor color READ color WRITE setColor)
Q_PROPERTY(QString name READ name WRITE setName)
Q_PROPERTY(bool visible READ visible WRITE setVisible)
Q_ENUMS(RenderingMode)