diff options
author | Sebastian Spaeth <Sebastian@SSpaeth.de> | 2010-10-14 08:30:07 +0200 |
---|---|---|
committer | Jan Holesovsky <kendy@suse.cz> | 2010-10-14 17:04:31 +0200 |
commit | a715e1b3d0336100af37b65cb87252bce01c2e84 (patch) | |
tree | 195ad614a9c929c07ee590a2b4633405c9974ac4 /sal/test | |
parent | 7b5a50e4edacdfec8ba26a2787fba5bb4753e3ca (diff) |
Add vim/emacs modelines to all source files
Fixes #fdo30794
Based on bin/add-modelines script (originally posted in mail
1286706307.1871.1399280959@webmail.messagingengine.com)
Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
Diffstat (limited to 'sal/test')
-rw-r--r-- | sal/test/test_salmain.cxx | 3 | ||||
-rw-r--r-- | sal/test/test_salmainwithargs.cxx | 3 | ||||
-rw-r--r-- | sal/test/testbootstrap.cxx | 3 | ||||
-rw-r--r-- | sal/test/unloading/samplelib1.cxx | 3 | ||||
-rw-r--r-- | sal/test/unloading/samplelib2.cxx | 3 | ||||
-rw-r--r-- | sal/test/unloading/unloadTest.cxx | 3 |
6 files changed, 18 insertions, 0 deletions
diff --git a/sal/test/test_salmain.cxx b/sal/test/test_salmain.cxx index 24cfb1cf56b9..1b409b82a765 100644 --- a/sal/test/test_salmain.cxx +++ b/sal/test/test_salmain.cxx @@ -1,3 +1,4 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -40,3 +41,5 @@ SAL_IMPLEMENT_MAIN() return 0; } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sal/test/test_salmainwithargs.cxx b/sal/test/test_salmainwithargs.cxx index 420a235313e8..605945d4e7d1 100644 --- a/sal/test/test_salmainwithargs.cxx +++ b/sal/test/test_salmainwithargs.cxx @@ -1,3 +1,4 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -40,3 +41,5 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv) return 0; } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sal/test/testbootstrap.cxx b/sal/test/testbootstrap.cxx index 757b877d4db5..871f527a17c9 100644 --- a/sal/test/testbootstrap.cxx +++ b/sal/test/testbootstrap.cxx @@ -1,3 +1,4 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -132,3 +133,5 @@ int main( int argc, char *argv[] ) return result; } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sal/test/unloading/samplelib1.cxx b/sal/test/unloading/samplelib1.cxx index d4632f3beb80..1988b7394174 100644 --- a/sal/test/unloading/samplelib1.cxx +++ b/sal/test/unloading/samplelib1.cxx @@ -1,3 +1,4 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -267,3 +268,5 @@ extern "C" { return globalModuleCount.canUnload( &globalModuleCount, libUnused); } } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sal/test/unloading/samplelib2.cxx b/sal/test/unloading/samplelib2.cxx index 0ac6e0b5209a..616dc13503c8 100644 --- a/sal/test/unloading/samplelib2.cxx +++ b/sal/test/unloading/samplelib2.cxx @@ -1,3 +1,4 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -234,3 +235,5 @@ extern "C" { return globalModuleCount.canUnload( &globalModuleCount, libUnused); } } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sal/test/unloading/unloadTest.cxx b/sal/test/unloading/unloadTest.cxx index d8589ab76717..31c3a6e7e05e 100644 --- a/sal/test/unloading/unloadTest.cxx +++ b/sal/test/unloading/unloadTest.cxx @@ -1,3 +1,4 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -654,3 +655,5 @@ sal_Bool test9() retval= sal_True; return retval; } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |