From 8427525470e1c3b03a5eeddd840325241b73c5a6 Mon Sep 17 00:00:00 2001 From: Basil Huber Date: Mon, 16 Feb 2015 18:47:20 +0100 Subject: [PATCH] Replaced tab by 4 spaces (in src/ui/HUD.cc) --- src/ui/HUD.cc | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/src/ui/HUD.cc b/src/ui/HUD.cc index 7774207da..24dc75de2 100644 --- a/src/ui/HUD.cc +++ b/src/ui/HUD.cc @@ -1361,16 +1361,17 @@ void HUD::copyImage(UASInterface* uas) if (u) { QImage temp_im = u->getImage(); - if (temp_im.byteCount() > 0) { + if (temp_im.byteCount() > 0) + { this->glImage = temp_im; - - // Save to directory if logging is enabled - if (imageLoggingEnabled) - { - temp_im.save(QString("%1/%2.png").arg(imageLogDirectory).arg(imageLogCounter)); - imageLogCounter++; - } - } + + // Save to directory if logging is enabled + if (imageLoggingEnabled) + { + temp_im.save(QString("%1/%2.png").arg(imageLogDirectory).arg(imageLogCounter)); + imageLogCounter++; + } + } } } -- 2.22.0