]> granicus.if.org Git - icinga2/commitdiff
Replace spaces with tabs
authorGunnar Beutner <gunnar@beutner.name>
Tue, 27 Jan 2015 09:50:15 +0000 (10:50 +0100)
committerGunnar Beutner <gunnar@beutner.name>
Tue, 27 Jan 2015 09:50:15 +0000 (10:50 +0100)
lib/compat/statusdatawriter.cpp
lib/config/configcompilercontext.cpp
lib/icinga/icinga-type.conf
lib/livestatus/commentstable.cpp
lib/livestatus/downtimestable.cpp
lib/methods/plugineventtask.hpp
lib/methods/pluginnotificationtask.hpp
lib/perfdata/perfdata-type.conf

index e61afb63524d6044e31cedf43f3da99bea11e518..ffca99beb61f3d96ced3aa8f386dbbe017f75fc8 100644 (file)
@@ -684,7 +684,7 @@ void StatusDataWriter::UpdateObjectsCache(void)
                tempobjectfp << "\t" "members" "\t";
                DumpNameList(tempobjectfp, ug->GetMembers());
                tempobjectfp << "\n"
-                               "\t" "}" "\n";
+                               "\t" "}" "\n";
 
                objectfp << tempobjectfp.str();
        }
index 6385149546301dce1239b941ef8cd1d7a9e1e730..2a89d28b5b421836f2bc1ad7e159c7a96196b46f 100644 (file)
@@ -76,7 +76,6 @@ void ConfigCompilerContext::FinishObjectsFile(void)
                    << boost::errinfo_api_function("rename")
                    << boost::errinfo_errno(errno)
                    << boost::errinfo_file_name(tempFilename));
-        }
-
+       }
 }
 
index 92985065431e2eeb20f15c33e23c3411e1fcdd3d..2e0970faef9d02f8235091aea59eecbdf1e8c117 100644 (file)
@@ -57,7 +57,7 @@
        %attribute %string "icon_image",
        %attribute %string "icon_image_alt",
 
-        %attribute %name(Endpoint) "command_endpoint",
+       %attribute %name(Endpoint) "command_endpoint",
 }
 
 %type Host %inherits Checkable {
                %attribute %number "*"
        },
 
-        %attribute %name(Endpoint) "command_endpoint",
+       %attribute %name(Endpoint) "command_endpoint",
 }
 
 %type User {
index 89c0c6ff279ce47cf5f0462dd6433d439ff398e7..47541598387a95ea0fe3ddb021d116a4abbb42e8 100644 (file)
@@ -98,9 +98,9 @@ Object::Ptr CommentsTable::HostAccessor(const Value& row, const Column::ObjectAc
 
        Checkable::Ptr checkable = Checkable::GetOwnerByCommentID(comment->GetId());
 
-        Host::Ptr host;
-        Service::Ptr service;
-        tie(host, service) = GetHostService(checkable);
+       Host::Ptr host;
+       Service::Ptr service;
+       tie(host, service) = GetHostService(checkable);
 
        return host;
 }
@@ -111,9 +111,9 @@ Object::Ptr CommentsTable::ServiceAccessor(const Value& row, const Column::Objec
 
        Checkable::Ptr checkable = Checkable::GetOwnerByCommentID(comment->GetId());
 
-        Host::Ptr host;
-        Service::Ptr service;
-        tie(host, service) = GetHostService(checkable);
+       Host::Ptr host;
+       Service::Ptr service;
+       tie(host, service) = GetHostService(checkable);
 
        return service;
 }
index b02804b49582e97bf3bcd619313220f0c4617470..742ff82063d043568f39f18f0287534b8cba0b2d 100644 (file)
@@ -98,9 +98,9 @@ Object::Ptr DowntimesTable::HostAccessor(const Value& row, const Column::ObjectA
 
        Checkable::Ptr checkable = Checkable::GetOwnerByDowntimeID(downtime->GetId());
 
-        Host::Ptr host;
-        Service::Ptr service;
-        tie(host, service) = GetHostService(checkable);
+       Host::Ptr host;
+       Service::Ptr service;
+       tie(host, service) = GetHostService(checkable);
 
        return host;
 }
@@ -111,9 +111,9 @@ Object::Ptr DowntimesTable::ServiceAccessor(const Value& row, const Column::Obje
 
        Checkable::Ptr checkable = Checkable::GetOwnerByDowntimeID(downtime->GetId());
 
-        Host::Ptr host;
-        Service::Ptr service;
-        tie(host, service) = GetHostService(checkable);
+       Host::Ptr host;
+       Service::Ptr service;
+       tie(host, service) = GetHostService(checkable);
 
        return service;
 }
index c3af9e9bc713dc9e7234db34d0dd4e67d1abc536..44cd6ff393e1a21e14e68013c784d8229a5b6488 100644 (file)
@@ -36,7 +36,7 @@ class I2_METHODS_API PluginEventTask
 {
 public:
        static void ScriptFunc(const Checkable::Ptr& service,
-            const Dictionary::Ptr& resolvedMacros, bool useResolvedMacros);
+           const Dictionary::Ptr& resolvedMacros, bool useResolvedMacros);
 
 private:
        PluginEventTask(void);
index 5b446a4cfc7a11400ce6bfcc822aaad923f4a4f9..81dee9d23315768acca978aebc5584f7e9fe2fdb 100644 (file)
@@ -39,7 +39,7 @@ public:
        static void ScriptFunc(const Notification::Ptr& notification,
            const User::Ptr& user, const CheckResult::Ptr& cr, int itype,
            const String& author, const String& comment,
-            const Dictionary::Ptr& resolvedMacros, bool useResolvedMacros);
+           const Dictionary::Ptr& resolvedMacros, bool useResolvedMacros);
 
 private:
        PluginNotificationTask(void);
index 2aa5b9b413c6f53e5296df29cfc206117776e235..99245b25314a6608ac3a96b3e84fd363170f3d40 100644 (file)
@@ -35,8 +35,8 @@
 }
 
 %type GelfWriter {
-        %attribute %string "host",
-        %attribute %string "port",
-        %attribute %string "source"
+       %attribute %string "host",
+       %attribute %string "port",
+       %attribute %string "source"
 }