mirror of
https://github.com/farmakis/qVoxFall.git
synced 2026-08-29 07:50:24 +08:00
typo fixes
This commit is contained in:
+2
-1
@@ -4,7 +4,7 @@
|
||||
//# #
|
||||
//# This program is free software; you can redistribute it and/or modify #
|
||||
//# it under the terms of the GNU General Public License as published by #
|
||||
//# the Free Software Foundation; version 2 of the License. #
|
||||
//# the Free Software Foundation; version 3 of the License. #
|
||||
//# #
|
||||
//# This program is distributed in the hope that it will be useful, #
|
||||
//# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||
@@ -38,6 +38,7 @@ public:
|
||||
// Inherited from ccStdPluginInterface
|
||||
void onNewSelection( const ccHObject::Container &selectedEntities ) override;
|
||||
QList<QAction *> getActions() override;
|
||||
virtual void registerCommands(ccCommandLineInterface* cmd) override;
|
||||
|
||||
private:
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
//# #
|
||||
//# This program is free software; you can redistribute it and/or modify #
|
||||
//# it under the terms of the GNU General Public License as published by #
|
||||
//# the Free Software Foundation; version 2 of the License. #
|
||||
//# the Free Software Foundation; version 3 of the License. #
|
||||
//# #
|
||||
//# This program is distributed in the hope that it will be useful, #
|
||||
//# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
//# #
|
||||
//# This program is free software; you can redistribute it and/or modify #
|
||||
//# it under the terms of the GNU General Public License as published by #
|
||||
//# the Free Software Foundation; version 2 or later of the License. #
|
||||
//# the Free Software Foundation; version 3 of the License. #
|
||||
//# #
|
||||
//# This program is distributed in the hope that it will be useful, #
|
||||
//# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
//# #
|
||||
//# This program is free software; you can redistribute it and/or modify #
|
||||
//# it under the terms of the GNU General Public License as published by #
|
||||
//# the Free Software Foundation; version 2 of the License. #
|
||||
//# the Free Software Foundation; version 3 of the License. #
|
||||
//# #
|
||||
//# This program is distributed in the hope that it will be useful, #
|
||||
//# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
//# #
|
||||
//# This program is free software; you can redistribute it and/or modify #
|
||||
//# it under the terms of the GNU General Public License as published by #
|
||||
//# the Free Software Foundation; version 2 of the License. #
|
||||
//# the Free Software Foundation; version 3 of the License. #
|
||||
//# #
|
||||
//# This program is distributed in the hope that it will be useful, #
|
||||
//# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||
|
||||
+12
-1
@@ -4,7 +4,7 @@
|
||||
//# #
|
||||
//# This program is free software; you can redistribute it and/or modify #
|
||||
//# it under the terms of the GNU General Public License as published by #
|
||||
//# the Free Software Foundation; version 2 of the License. #
|
||||
//# the Free Software Foundation; version 3 of the License. #
|
||||
//# #
|
||||
//# This program is distributed in the hope that it will be useful, #
|
||||
//# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||
@@ -25,6 +25,7 @@
|
||||
//local
|
||||
#include "qVoxFallDialog.h"
|
||||
#include "qVoxFallDisclaimerDialog.h"
|
||||
#include "qVoxFallCommands.h"
|
||||
#include "qVoxFallProcess.h"
|
||||
|
||||
//qCC_db
|
||||
@@ -137,3 +138,13 @@ void qVoxFall::doAction()
|
||||
//'Compute' may change some parameters of the dialog
|
||||
dlg.saveParamsToPersistentSettings();
|
||||
}
|
||||
|
||||
void qVoxFall::registerCommands(ccCommandLineInterface* cmd)
|
||||
{
|
||||
if (!cmd)
|
||||
{
|
||||
assert(false);
|
||||
return;
|
||||
}
|
||||
cmd->registerCommand(ccCommandLineInterface::Command::Shared(new CommandVoxFall));
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
//# #
|
||||
//# This program is free software; you can redistribute it and/or modify #
|
||||
//# it under the terms of the GNU General Public License as published by #
|
||||
//# the Free Software Foundation; version 2 of the License. #
|
||||
//# the Free Software Foundation; version 3 of the License. #
|
||||
//# #
|
||||
//# This program is distributed in the hope that it will be useful, #
|
||||
//# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
//# #
|
||||
//# This program is free software; you can redistribute it and/or modify #
|
||||
//# it under the terms of the GNU General Public License as published by #
|
||||
//# the Free Software Foundation; version 2 of the License. #
|
||||
//# the Free Software Foundation; version 3 of the License. #
|
||||
//# #
|
||||
//# This program is distributed in the hope that it will be useful, #
|
||||
//# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
//# #
|
||||
//# This program is free software; you can redistribute it and/or modify #
|
||||
//# it under the terms of the GNU General Public License as published by #
|
||||
//# the Free Software Foundation; version 2 of the License. #
|
||||
//# the Free Software Foundation; version 3 of the License. #
|
||||
//# #
|
||||
//# This program is distributed in the hope that it will be useful, #
|
||||
//# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
//# #
|
||||
//# This program is free software; you can redistribute it and/or modify #
|
||||
//# it under the terms of the GNU General Public License as published by #
|
||||
//# the Free Software Foundation; version 2 of the License. #
|
||||
//# the Free Software Foundation; version 3 of the License. #
|
||||
//# #
|
||||
//# This program is distributed in the hope that it will be useful, #
|
||||
//# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||
|
||||
@@ -113,7 +113,7 @@
|
||||
<item row="1" column="1">
|
||||
<widget class="QDoubleSpinBox" name="dipDoubleSpinBox">
|
||||
<property name="decimals">
|
||||
<number>0</number>
|
||||
<number>90</number>
|
||||
</property>
|
||||
<property name="minimum">
|
||||
<double>0.0</double>
|
||||
|
||||
Reference in New Issue
Block a user