summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2018-06-12 11:45:42 +0200
committerDave Davenport <qball@gmpclient.org>2018-06-12 11:47:03 +0200
commitb837c3fdffa74b7524db22bbbb03da2c87a13d3f (patch)
treecaef76370b607440b3395545d4603663333a36f7 /source
parentc856c1a8abb292b06bba4ef05a4338b6b4ad6832 (diff)
Change log domain from Utils.IconFetcher to Helpers.IconFetcher
Matches doxygen.
Diffstat (limited to 'source')
-rw-r--r--source/dialogs/combi.c1
-rw-r--r--source/dialogs/dmenu.c1
-rw-r--r--source/dialogs/drun.c1
-rw-r--r--source/dialogs/script.c1
-rw-r--r--source/dialogs/window.c1
-rw-r--r--source/rofi-icon-fetcher.c3
-rw-r--r--source/widgets/box.c1
-rw-r--r--source/widgets/container.c1
-rw-r--r--source/widgets/icon.c1
9 files changed, 10 insertions, 1 deletions
diff --git a/source/dialogs/combi.c b/source/dialogs/combi.c
index 6e34d422..2b60352d 100644
--- a/source/dialogs/combi.c
+++ b/source/dialogs/combi.c
@@ -25,6 +25,7 @@
*
*/
+/** The log domain of this dialog. */
#define G_LOG_DOMAIN "Dialogs.Combi"
#include <config.h>
diff --git a/source/dialogs/dmenu.c b/source/dialogs/dmenu.c
index 63a69e6d..4b3d5fd0 100644
--- a/source/dialogs/dmenu.c
+++ b/source/dialogs/dmenu.c
@@ -25,6 +25,7 @@
*
*/
+/** The log domain of this dialog. */
#define G_LOG_DOMAIN "Dialogs.DMenu"
#include <config.h>
diff --git a/source/dialogs/drun.c b/source/dialogs/drun.c
index 077f0e3e..fa71d7e1 100644
--- a/source/dialogs/drun.c
+++ b/source/dialogs/drun.c
@@ -25,6 +25,7 @@
*
*/
+/** The log domain of this dialog. */
#define G_LOG_DOMAIN "Dialogs.DRun"
#include <config.h>
diff --git a/source/dialogs/script.c b/source/dialogs/script.c
index 4f53ee3e..0ff1893f 100644
--- a/source/dialogs/script.c
+++ b/source/dialogs/script.c
@@ -25,6 +25,7 @@
*
*/
+/** The log domain of this dialog. */
#define G_LOG_DOMAIN "Dialogs.Script"
#include <config.h>
diff --git a/source/dialogs/window.c b/source/dialogs/window.c
index d031d5d1..d3af47e8 100644
--- a/source/dialogs/window.c
+++ b/source/dialogs/window.c
@@ -25,6 +25,7 @@
*
*/
+/** The log domain of this dialog. */
#define G_LOG_DOMAIN "Dialogs.Window"
#include <config.h>
diff --git a/source/rofi-icon-fetcher.c b/source/rofi-icon-fetcher.c
index 615d3c61..050b717c 100644
--- a/source/rofi-icon-fetcher.c
+++ b/source/rofi-icon-fetcher.c
@@ -25,7 +25,8 @@
*
*/
-#define G_LOG_DOMAIN "Util.IconFetcher"
+/** The log domain of this Helper. */
+#define G_LOG_DOMAIN "Helpers.IconFetcher"
#include "rofi-icon-fetcher.h"
#include "rofi-types.h"
diff --git a/source/widgets/box.c b/source/widgets/box.c
index 27440a8b..7c184d72 100644
--- a/source/widgets/box.c
+++ b/source/widgets/box.c
@@ -25,6 +25,7 @@
*
*/
+/** The log domain of this widget. */
#define G_LOG_DOMAIN "Widgets.Box"
#include <config.h>
diff --git a/source/widgets/container.c b/source/widgets/container.c
index 736de028..008f0711 100644
--- a/source/widgets/container.c
+++ b/source/widgets/container.c
@@ -25,6 +25,7 @@
*
*/
+/** The log domain of this widget. */
#define G_LOG_DOMAIN "Widgets.Window"
#include <config.h>
diff --git a/source/widgets/icon.c b/source/widgets/icon.c
index 63ab3c60..04782edd 100644
--- a/source/widgets/icon.c
+++ b/source/widgets/icon.c
@@ -25,6 +25,7 @@
*
*/
+/** The log domain of this widget. */
#define G_LOG_DOMAIN "Widgets.Icon"
#include <config.h>