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,
|
Q_DECLARE_INTERFACE(Messages_interface,
|
||||||
"com.geometryfactory.PolyhedronDemo.MessagesInterface/1.0");
|
"com.geometryfactory.PolyhedronDemo.MessagesInterface/1.0")
|
||||||
|
|
||||||
#endif // MESSAGES_INTERFACE_H
|
#endif // MESSAGES_INTERFACE_H
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ public:
|
||||||
|
|
||||||
QStringList PS_demo_off_plugin::nameFilters() const {
|
QStringList PS_demo_off_plugin::nameFilters() const {
|
||||||
return QStringList() << "OFF files (*.off)";
|
return QStringList() << "OFF files (*.off)";
|
||||||
};
|
}
|
||||||
|
|
||||||
bool PS_demo_off_plugin::canLoad() const {
|
bool PS_demo_off_plugin::canLoad() const {
|
||||||
return true;
|
return true;
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ class PS_demo_simplification_plugin :
|
||||||
public Polyhedron_demo_plugin_helper
|
public Polyhedron_demo_plugin_helper
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
Q_INTERFACES(Polyhedron_demo_plugin_interface);
|
Q_INTERFACES(Polyhedron_demo_plugin_interface)
|
||||||
QAction* actionSimplify;
|
QAction* actionSimplify;
|
||||||
|
|
||||||
public:
|
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"
|
#include "PS_demo_simplification_plugin.moc"
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ public:
|
||||||
QStringList PS_demo_xyz_plugin::nameFilters() const {
|
QStringList PS_demo_xyz_plugin::nameFilters() const {
|
||||||
return QStringList() << "XYZ files (*.xyz)"
|
return QStringList() << "XYZ files (*.xyz)"
|
||||||
<< "Point Sets with Normal (*.pwn)";
|
<< "Point Sets with Normal (*.pwn)";
|
||||||
};
|
}
|
||||||
|
|
||||||
bool PS_demo_xyz_plugin::canLoad() const {
|
bool PS_demo_xyz_plugin::canLoad() const {
|
||||||
return true;
|
return true;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue