zeitgeist team mailing list archive
-
zeitgeist team
-
Mailing list archive
-
Message #04243
[Branch ~zeitgeist/zeitgeist/bluebird] Rev 303: Change copyright line to the format used everywhere else.
------------------------------------------------------------
revno: 303
committer: Siegfried-Angel Gevatter Pujals <siegfried@xxxxxxxxxxxx>
branch nick: bluebird
timestamp: Wed 2011-10-12 17:31:04 +0200
message:
Change copyright line to the format used everywhere else.
modified:
extensions/fts.vala
--
lp:~zeitgeist/zeitgeist/bluebird
https://code.launchpad.net/~zeitgeist/zeitgeist/bluebird
Your team Zeitgeist Framework Team is subscribed to branch lp:~zeitgeist/zeitgeist/bluebird.
To unsubscribe from this branch go to https://code.launchpad.net/~zeitgeist/zeitgeist/bluebird/+edit-subscription
=== modified file 'extensions/fts.vala'
--- extensions/fts.vala 2011-10-12 15:22:19 +0000
+++ extensions/fts.vala 2011-10-12 15:31:04 +0000
@@ -2,6 +2,7 @@
*
* Copyright © 2011 Seif Lotfy <seif@xxxxxxxxx>
* Copyright © 2011 Canonical Ltd.
+ * By Michal Hruby <michal.hruby@xxxxxxxxxxxxx>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
@@ -16,8 +17,6 @@
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
- * Authored by Seif Lotfy <seif@xxxxxxxxx>
- * Michal Hruby <michal.hruby@xxxxxxxxxxxxx>
*/
namespace Zeitgeist
@@ -102,7 +101,7 @@
}
}
- /* This whole method is one huge workaround for an issue with Vala
+ /* This whole method is one huge workaround for an issue with Vala
* enclosing all out/return parameters in a TUPLE variant */
public async Variant search (string query_string, Variant time_range,
Variant filter_templates, uint offset, uint count, uint result_type,
@@ -133,7 +132,8 @@
var result = yield siin.search (query_string, time_range,
filter_templates, offset, count, result_type);
*/
- debug ("Got %u results from indexer (in %f seconds)", (uint) events.n_children (), timer.elapsed ());
+ debug ("Got %u results from indexer (in %f seconds)",
+ (uint) events.n_children (), timer.elapsed ());
return result.get_child_value (1);
}