Skip to content
Snippets Groups Projects
Commit 77c42189 authored by Raphael Grimm's avatar Raphael Grimm
Browse files

Cleanup formatting (run astyle)

parent 0f975430
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -68,7 +68,7 @@ namespace armarx
void ConditionViewerWidgetController::onExitComponent()
{
if(updateTask)
if (updateTask)
{
updateTask->stop();
}
......
......@@ -130,7 +130,7 @@ void DetailedApplicationView::showApplication(ApplicationPtr application)
Ice::PropertyDict dict = props->getProperties()->getPropertiesForPrefix("");
for (auto const & property : dict)
for (auto const& property : dict)
{
QtVariantProperty* appPropertyItem = variantManager->addProperty(QVariant::String, QString::fromStdString(property.first));
appPropertyItem->setValue(QString::fromStdString(property.second));
......@@ -246,7 +246,7 @@ void DetailedApplicationView::showApplicationInstance(ApplicationInstancePtr app
Ice::PropertyDict dict = props->getProperties()->getPropertiesForPrefix("");
for (auto const & property : dict)
for (auto const& property : dict)
{
if (property.first != "Ice.Config")
{
......@@ -369,7 +369,7 @@ void DetailedApplicationView::showScenario(ScenarioPtr scenario)
Ice::PropertyDict dict = props->getProperties()->getPropertiesForPrefix("");
for (auto const & property : dict)
for (auto const& property : dict)
{
if (property.first != "Ice.Config")
{
......
......@@ -15,9 +15,9 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package
* @author
* @date
* @package
* @author
* @date
* @copyright http://www.gnu.org/licenses/gpl-2.0.txt
* GNU General Public License
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment