mirror of https://github.com/CGAL/cgal
Remove extra ';'
This commit is contained in:
parent
48bb6afcf6
commit
303bf2211a
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue