[cheese/wip/deprecation-fixes: 1/7] Remove some unnecessary "static" keywords
- From: David King <davidk src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [cheese/wip/deprecation-fixes: 1/7] Remove some unnecessary "static" keywords
- Date: Fri, 19 Apr 2013 22:54:26 +0000 (UTC)
commit 3ee196c7a31c442fc09fad1d9a690da497a05918
Author: David King <amigadave amigadave com>
Date: Fri Apr 19 17:53:53 2013 +0100
Remove some unnecessary "static" keywords
This avoids some warnings from the Vala compiler.
src/cheese-countdown.vala | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/src/cheese-countdown.vala b/src/cheese-countdown.vala
index 81b9059..f6f642a 100644
--- a/src/cheese-countdown.vala
+++ b/src/cheese-countdown.vala
@@ -28,15 +28,15 @@ internal class Cheese.Countdown : GLib.Object
private Clutter.Text countdown_actor;
- private static CountdownCallback completed_callback;
+ private CountdownCallback completed_callback;
- private static int current_value = 0;
+ private int current_value = 0;
- private static ulong signal_id;
+ private ulong signal_id;
- private static Clutter.Animation anim;
+ private Clutter.Animation anim;
- private static GLib.Settings settings;
+ private GLib.Settings settings;
public bool running;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]