Remove extra ';'

This commit is contained in:
Andreas Fabri 2010-05-17 14:23:33 +00:00
parent 48bb6afcf6
commit 303bf2211a
4 changed files with 5 additions and 5 deletions

View File

@ -12,6 +12,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

@ -23,7 +23,7 @@ public:
QStringList PS_demo_off_plugin::nameFilters() const {
return QStringList() << "OFF files (*.off)";
};
}
bool PS_demo_off_plugin::canLoad() const {
return true;

View File

@ -23,7 +23,7 @@ class PS_demo_simplification_plugin :
public Polyhedron_demo_plugin_helper
{
Q_OBJECT
Q_INTERFACES(Polyhedron_demo_plugin_interface);
Q_INTERFACES(Polyhedron_demo_plugin_interface)
QAction* actionSimplify;
public:
@ -137,6 +137,6 @@ void PS_demo_simplification_plugin::on_actionSimplify_triggered()
}
}
Q_EXPORT_PLUGIN2(PS_demo_simplification_plugin, PS_demo_simplification_plugin);
Q_EXPORT_PLUGIN2(PS_demo_simplification_plugin, PS_demo_simplification_plugin)
#include "PS_demo_simplification_plugin.moc"

View File

@ -23,7 +23,7 @@ public:
QStringList PS_demo_xyz_plugin::nameFilters() const {
return QStringList() << "XYZ files (*.xyz)"
<< "Point Sets with Normal (*.pwn)";
};
}
bool PS_demo_xyz_plugin::canLoad() const {
return true;