Fixed restoration of the panel divider position.
[psensor.git] / src / ui_unity.h
index cf8fa7d..52e51d9 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2010-2014 jeanfi@gmail.com
+ * Copyright (C) 2010-2016 jeanfi@gmail.com
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License as
 
 static inline bool ui_unity_is_supported(void) { return true; }
 
-void ui_unity_launcher_entry_update(struct psensor **, unsigned int, int);
+void ui_unity_launcher_entry_update(struct psensor **);
+
+void ui_unity_init(void);
 
 #else
 
 static inline bool ui_unity_is_supported(void) { return false; }
 
 static inline void
-ui_unity_launcher_entry_update(struct psensor **s,
-                              unsigned int show,
-                              int use_celsius) {}
+ui_unity_launcher_entry_update(struct psensor **s) {}
+
+static inline void ui_unity_init(void) {}
 
 #endif