aboutsummaryrefslogtreecommitdiffstats
path: root/fsotdld
diff options
context:
space:
mode:
authorKlaus Kurzmann <mok@fluxnetz.de>2011-05-05 21:15:20 +0200
committerKlaus Kurzmann <mok@fluxnetz.de>2011-05-05 21:15:20 +0200
commit901f975e7a9c127d5a4e9b68931c9b161224b82c (patch)
tree45d2710bfac9dd0d5a76f8f713fd69d057b0e027 /fsotdld
parentc01888418a252ed4f6fee2000c3a342be22a754e (diff)
downloadcornucopia-901f975e7a9c127d5a4e9b68931c9b161224b82c.tar.gz
cornucopia-901f975e7a9c127d5a4e9b68931c9b161224b82c.tar.bz2
cornucopia-901f975e7a9c127d5a4e9b68931c9b161224b82c.zip
fsotdld: add vim tags for correct indentation with 4 spaces
Signed-off-by: Klaus Kurzmann <mok@fluxnetz.de>
Diffstat (limited to 'fsotdld')
-rw-r--r--fsotdld/src/bin/main.vala2
-rw-r--r--fsotdld/src/lib/dbusinterfaces.vala2
-rw-r--r--fsotdld/src/lib/gpschannel.vala2
-rw-r--r--fsotdld/src/lib/gpsdata.vala2
-rw-r--r--fsotdld/src/lib/gpsreceiver.vala1
-rw-r--r--fsotdld/src/lib/locationprovider.vala2
-rw-r--r--fsotdld/src/lib/source.vala2
-rw-r--r--fsotdld/src/plugins/alarm/plugin.vala2
-rw-r--r--fsotdld/src/plugins/contextmanager/plugin.vala2
-rw-r--r--fsotdld/src/plugins/provider_gps/plugin.vala2
-rw-r--r--fsotdld/src/plugins/provider_gps_nmea/plugin.vala2
-rw-r--r--fsotdld/src/plugins/provider_location_cellidwifi/plugin.vala2
-rw-r--r--fsotdld/src/plugins/provider_location_dummy/plugin.vala2
-rw-r--r--fsotdld/src/plugins/provider_location_freegeoip/plugin.vala2
-rw-r--r--fsotdld/src/plugins/provider_location_gpsd/libgps.vapi2
-rw-r--r--fsotdld/src/plugins/provider_location_gpsd/plugin.vala2
-rw-r--r--fsotdld/src/plugins/source_dummy/plugin.vala2
-rw-r--r--fsotdld/src/plugins/source_gps/plugin.vala2
-rw-r--r--fsotdld/src/plugins/source_gsm/plugin.vala2
-rw-r--r--fsotdld/src/plugins/source_ntp/plugin.vala2
-rw-r--r--fsotdld/src/plugins/sync_time/plugin.vala2
-rw-r--r--fsotdld/tests/testsourcentp.vala2
-rw-r--r--fsotdld/vapi/gio-hacks.vapi2
23 files changed, 45 insertions, 0 deletions
diff --git a/fsotdld/src/bin/main.vala b/fsotdld/src/bin/main.vala
index 86e6f935..b9b04806 100644
--- a/fsotdld/src/bin/main.vala
+++ b/fsotdld/src/bin/main.vala
@@ -49,3 +49,5 @@ public static int main( string[] args )
FsoFramework.theLogger.info( "fsotdl shutdown." );
return 0;
}
+
+// vim:ts=4:sw=4:expandtab
diff --git a/fsotdld/src/lib/dbusinterfaces.vala b/fsotdld/src/lib/dbusinterfaces.vala
index 200e9330..0849c896 100644
--- a/fsotdld/src/lib/dbusinterfaces.vala
+++ b/fsotdld/src/lib/dbusinterfaces.vala
@@ -28,3 +28,5 @@ public interface WpaDBusIface : GLib.Object
public abstract async GLib.ObjectPath[] scanResults() throws DBusError, IOError;
public signal void ScanResultsAvailable();
}
+
+// vim:ts=4:sw=4:expandtab
diff --git a/fsotdld/src/lib/gpschannel.vala b/fsotdld/src/lib/gpschannel.vala
index 5918ed2c..a5f956c9 100644
--- a/fsotdld/src/lib/gpschannel.vala
+++ b/fsotdld/src/lib/gpschannel.vala
@@ -94,3 +94,5 @@ public class FsoGps.Channel : FsoFramework.AbstractCommandQueue
}
}
+// vim:ts=4:sw=4:expandtab
+
diff --git a/fsotdld/src/lib/gpsdata.vala b/fsotdld/src/lib/gpsdata.vala
index 2d471d5f..0e319180 100644
--- a/fsotdld/src/lib/gpsdata.vala
+++ b/fsotdld/src/lib/gpsdata.vala
@@ -50,3 +50,5 @@ public class FsoGps.FixInfo
this.lon = lon;
}
}
+
+// vim:ts=4:sw=4:expandtab
diff --git a/fsotdld/src/lib/gpsreceiver.vala b/fsotdld/src/lib/gpsreceiver.vala
index 1a357271..c7f7485b 100644
--- a/fsotdld/src/lib/gpsreceiver.vala
+++ b/fsotdld/src/lib/gpsreceiver.vala
@@ -221,3 +221,4 @@ public abstract class FsoGps.AbstractReceiver : FsoTdl.AbstractLocationProvider
}
}
+// vim:ts=4:sw=4:expandtab
diff --git a/fsotdld/src/lib/locationprovider.vala b/fsotdld/src/lib/locationprovider.vala
index 41594cb1..bbc23c8b 100644
--- a/fsotdld/src/lib/locationprovider.vala
+++ b/fsotdld/src/lib/locationprovider.vala
@@ -35,3 +35,5 @@ public abstract class FsoTdl.AbstractLocationProvider : FsoTdl.ILocationProvider
public abstract void start();
public abstract void stop();
}
+
+// vim:ts=4:sw=4:expandtab
diff --git a/fsotdld/src/lib/source.vala b/fsotdld/src/lib/source.vala
index d22b705d..bfb9c6e5 100644
--- a/fsotdld/src/lib/source.vala
+++ b/fsotdld/src/lib/source.vala
@@ -44,3 +44,5 @@ public abstract class FsoTime.AbstractSource : FsoTime.Source, FsoFramework.Abst
}
+// vim:ts=4:sw=4:expandtab
+
diff --git a/fsotdld/src/plugins/alarm/plugin.vala b/fsotdld/src/plugins/alarm/plugin.vala
index d00dd51a..a850335e 100644
--- a/fsotdld/src/plugins/alarm/plugin.vala
+++ b/fsotdld/src/plugins/alarm/plugin.vala
@@ -245,3 +245,5 @@ public static void fso_register_function( TypeModule module )
{
FsoFramework.theLogger.debug( "fsotdl.alarm fso_register_function()" );
}
+
+// vim:ts=4:sw=4:expandtab
diff --git a/fsotdld/src/plugins/contextmanager/plugin.vala b/fsotdld/src/plugins/contextmanager/plugin.vala
index eadfcf94..a33e6fea 100644
--- a/fsotdld/src/plugins/contextmanager/plugin.vala
+++ b/fsotdld/src/plugins/contextmanager/plugin.vala
@@ -371,3 +371,5 @@ public static void fso_register_function( TypeModule module )
return (!ok);
}
*/
+
+// vim:ts=4:sw=4:expandtab
diff --git a/fsotdld/src/plugins/provider_gps/plugin.vala b/fsotdld/src/plugins/provider_gps/plugin.vala
index 98d8eef2..598f4acc 100644
--- a/fsotdld/src/plugins/provider_gps/plugin.vala
+++ b/fsotdld/src/plugins/provider_gps/plugin.vala
@@ -171,3 +171,5 @@ public static void fso_register_function( TypeModule module )
return (!ok);
}
*/
+
+// vim:ts=4:sw=4:expandtab
diff --git a/fsotdld/src/plugins/provider_gps_nmea/plugin.vala b/fsotdld/src/plugins/provider_gps_nmea/plugin.vala
index 0f542eb7..3a41302f 100644
--- a/fsotdld/src/plugins/provider_gps_nmea/plugin.vala
+++ b/fsotdld/src/plugins/provider_gps_nmea/plugin.vala
@@ -221,3 +221,5 @@ public static void fso_register_function( TypeModule module )
return (!ok);
}
*/
+
+// vim:ts=4:sw=4:expandtab
diff --git a/fsotdld/src/plugins/provider_location_cellidwifi/plugin.vala b/fsotdld/src/plugins/provider_location_cellidwifi/plugin.vala
index 1accd5f4..122f0502 100644
--- a/fsotdld/src/plugins/provider_location_cellidwifi/plugin.vala
+++ b/fsotdld/src/plugins/provider_location_cellidwifi/plugin.vala
@@ -347,3 +347,5 @@ public static void fso_register_function( TypeModule module )
return (!ok);
}
*/
+
+// vim:ts=4:sw=4:expandtab
diff --git a/fsotdld/src/plugins/provider_location_dummy/plugin.vala b/fsotdld/src/plugins/provider_location_dummy/plugin.vala
index 0e1ef753..49e74f83 100644
--- a/fsotdld/src/plugins/provider_location_dummy/plugin.vala
+++ b/fsotdld/src/plugins/provider_location_dummy/plugin.vala
@@ -104,3 +104,5 @@ public static void fso_register_function( TypeModule module )
return (!ok);
}
*/
+
+// vim:ts=4:sw=4:expandtab
diff --git a/fsotdld/src/plugins/provider_location_freegeoip/plugin.vala b/fsotdld/src/plugins/provider_location_freegeoip/plugin.vala
index 8f9daa92..175b14f3 100644
--- a/fsotdld/src/plugins/provider_location_freegeoip/plugin.vala
+++ b/fsotdld/src/plugins/provider_location_freegeoip/plugin.vala
@@ -164,3 +164,5 @@ public static void fso_register_function( TypeModule module )
return (!ok);
}
*/
+
+// vim:ts=4:sw=4:expandtab
diff --git a/fsotdld/src/plugins/provider_location_gpsd/libgps.vapi b/fsotdld/src/plugins/provider_location_gpsd/libgps.vapi
index 52a86f47..d922568d 100644
--- a/fsotdld/src/plugins/provider_location_gpsd/libgps.vapi
+++ b/fsotdld/src/plugins/provider_location_gpsd/libgps.vapi
@@ -232,3 +232,5 @@ extern double wgs84_separation(double, double);
#endif
+// vim:ts=4:sw=4:expandtab
+
diff --git a/fsotdld/src/plugins/provider_location_gpsd/plugin.vala b/fsotdld/src/plugins/provider_location_gpsd/plugin.vala
index 95b811b5..89ad0b7e 100644
--- a/fsotdld/src/plugins/provider_location_gpsd/plugin.vala
+++ b/fsotdld/src/plugins/provider_location_gpsd/plugin.vala
@@ -127,3 +127,5 @@ public static void fso_register_function( TypeModule module )
return (!ok);
}
*/
+
+// vim:ts=4:sw=4:expandtab
diff --git a/fsotdld/src/plugins/source_dummy/plugin.vala b/fsotdld/src/plugins/source_dummy/plugin.vala
index ece646a3..0ab6ac6d 100644
--- a/fsotdld/src/plugins/source_dummy/plugin.vala
+++ b/fsotdld/src/plugins/source_dummy/plugin.vala
@@ -83,3 +83,5 @@ public static void fso_register_function( TypeModule module )
return (!ok);
}
*/
+
+// vim:ts=4:sw=4:expandtab
diff --git a/fsotdld/src/plugins/source_gps/plugin.vala b/fsotdld/src/plugins/source_gps/plugin.vala
index ddeb46b7..3ac5bc20 100644
--- a/fsotdld/src/plugins/source_gps/plugin.vala
+++ b/fsotdld/src/plugins/source_gps/plugin.vala
@@ -153,3 +153,5 @@ public static void fso_register_function( TypeModule module )
return (!ok);
}
*/
+
+// vim:ts=4:sw=4:expandtab
diff --git a/fsotdld/src/plugins/source_gsm/plugin.vala b/fsotdld/src/plugins/source_gsm/plugin.vala
index f1abf9b5..590af128 100644
--- a/fsotdld/src/plugins/source_gsm/plugin.vala
+++ b/fsotdld/src/plugins/source_gsm/plugin.vala
@@ -236,3 +236,5 @@ public static void fso_register_function( TypeModule module )
return (!ok);
}
*/
+
+// vim:ts=4:sw=4:expandtab
diff --git a/fsotdld/src/plugins/source_ntp/plugin.vala b/fsotdld/src/plugins/source_ntp/plugin.vala
index 0a342163..32502148 100644
--- a/fsotdld/src/plugins/source_ntp/plugin.vala
+++ b/fsotdld/src/plugins/source_ntp/plugin.vala
@@ -199,3 +199,5 @@ public static void fso_register_function( TypeModule module )
return (!ok);
}
*/
+
+// vim:ts=4:sw=4:expandtab
diff --git a/fsotdld/src/plugins/sync_time/plugin.vala b/fsotdld/src/plugins/sync_time/plugin.vala
index 98b50076..c256373c 100644
--- a/fsotdld/src/plugins/sync_time/plugin.vala
+++ b/fsotdld/src/plugins/sync_time/plugin.vala
@@ -213,3 +213,5 @@ public static void fso_register_function( TypeModule module )
return (!ok);
}
*/
+
+// vim:ts=4:sw=4:expandtab
diff --git a/fsotdld/tests/testsourcentp.vala b/fsotdld/tests/testsourcentp.vala
index dc448f5c..2d6469c4 100644
--- a/fsotdld/tests/testsourcentp.vala
+++ b/fsotdld/tests/testsourcentp.vala
@@ -35,3 +35,5 @@ void main (string[] args)
Test.add_func( "/FsoTime/SourceNtp/all", test_it );
Test.run ();
}
+
+// vim:ts=4:sw=4:expandtab
diff --git a/fsotdld/vapi/gio-hacks.vapi b/fsotdld/vapi/gio-hacks.vapi
index 0be76ea5..544b8f6c 100644
--- a/fsotdld/vapi/gio-hacks.vapi
+++ b/fsotdld/vapi/gio-hacks.vapi
@@ -8,3 +8,5 @@ namespace GLibHacks
public static uint watch_name_on_connection (GLib.DBusConnection connection, string name, GLib.BusNameWatcherFlags flags, [CCode (type = "GClosure*")] GLib.BusNameAppearedCallback name_appeared_handler, [CCode (type = "GClosure*")] GLib.BusNameVanishedCallback name_vanished_handler);
}
}
+
+// vim:ts=4:sw=4:expandtab