summaryrefslogtreecommitdiff
path: root/src/procman_matesu.cpp
diff options
context:
space:
mode:
authorinfirit <[email protected]>2014-12-18 00:23:57 +0100
committerinfirit <[email protected]>2014-12-18 00:23:57 +0100
commit12975909c589880030db6125ad6dcbea889edcdc (patch)
treefc374a8a3b855b5024d09f9edb2e47ca755cb7ac /src/procman_matesu.cpp
parent0dea7ab1931fb33f35eceab66dffcd56f4550f68 (diff)
downloadmate-system-monitor-12975909c589880030db6125ad6dcbea889edcdc.tar.bz2
mate-system-monitor-12975909c589880030db6125ad6dcbea889edcdc.tar.xz
Make indentation uniform across source files
No more tabs, 4 spaces instead. And remove trailing whitespace.
Diffstat (limited to 'src/procman_matesu.cpp')
-rw-r--r--src/procman_matesu.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/procman_matesu.cpp b/src/procman_matesu.cpp
index 5bf6c59..b7c08ad 100644
--- a/src/procman_matesu.cpp
+++ b/src/procman_matesu.cpp
@@ -12,29 +12,29 @@ gboolean (*matesu_exec)(const char *commandline);
static void
load_matesu(void)
{
- static gboolean init;
+ static gboolean init;
- if (init)
- return;
+ if (init)
+ return;
- init = TRUE;
+ init = TRUE;
- load_symbols("libmatesu.so.0",
- "matesu_exec", &matesu_exec,
- NULL);
+ load_symbols("libmatesu.so.0",
+ "matesu_exec", &matesu_exec,
+ NULL);
}
gboolean
procman_matesu_create_root_password_dialog(const char *command)
{
- return matesu_exec(command);
+ return matesu_exec(command);
}
gboolean
procman_has_matesu(void)
{
- load_matesu();
- return matesu_exec != NULL;
+ load_matesu();
+ return matesu_exec != NULL;
}