diff options
author | raveit65 <[email protected]> | 2020-12-27 11:46:13 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-12-27 11:46:13 +0100 |
commit | 181184aba23ac392a7a6ce92751ab5561721f3c2 (patch) | |
tree | f8d06ef68f64428f2b4cba8d273c0744b2ac751f /stickynotes/util.h | |
parent | eddd0898e16124081e226b07fd0901ff0eae2871 (diff) | |
download | mate-applets-181184aba23ac392a7a6ce92751ab5561721f3c2.tar.bz2 mate-applets-181184aba23ac392a7a6ce92751ab5561721f3c2.tar.xz |
stickynotes: improve code-style
- tabs to spaces
- shortened lines
- unnecessary casts on functions which accept a gpointer like g_signal_connect
Diffstat (limited to 'stickynotes/util.h')
-rw-r--r-- | stickynotes/util.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stickynotes/util.h b/stickynotes/util.h index 61d86c4f..e3724c54 100644 --- a/stickynotes/util.h +++ b/stickynotes/util.h @@ -23,8 +23,8 @@ #include <glib.h> #include <gtk/gtk.h> -void xstuff_change_workspace (GtkWindow *window, - int new_space); -int xstuff_get_current_workspace (GtkWindow *window); +void xstuff_change_workspace (GtkWindow *window, + int new_space); +int xstuff_get_current_workspace (GtkWindow *window); #endif /* #ifndef __UTIL_H__ */ |