summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-02-08 09:03:11 +0100
committerDave Davenport <qball@gmpclient.org>2016-02-08 09:03:11 +0100
commit5a86ae5c99d988511e31d20f08839a47a2141cc5 (patch)
treed1866c7ba3bee0bc34afff4ef29818617311d3d3 /test
parentad932c8fd02a278813af7c7c578caaa4cd5e4f0d (diff)
Cleanups
Diffstat (limited to 'test')
-rw-r--r--test/helper-test.c4
-rw-r--r--test/textbox-test.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/test/helper-test.c b/test/helper-test.c
index 1e9db324..fe575034 100644
--- a/test/helper-test.c
+++ b/test/helper-test.c
@@ -21,14 +21,14 @@ static int test = 0;
} \
}
-void error_dialog ( const char *msg, G_GNUC_UNUSED int markup )
+void rofi_view_error_dialog ( const char *msg, G_GNUC_UNUSED int markup )
{
fputs ( msg, stderr );
}
int show_error_message ( const char *msg, int markup )
{
- error_dialog ( msg, markup );
+ rofi_view_error_dialog ( msg, markup );
return 0;
}
#include <x11-helper.h>
diff --git a/test/textbox-test.c b/test/textbox-test.c
index 4622015c..72e2e98a 100644
--- a/test/textbox-test.c
+++ b/test/textbox-test.c
@@ -30,14 +30,14 @@ void rofi_view_queue_redraw ()
{
}
-void error_dialog ( const char *msg, G_GNUC_UNUSED int markup )
+void rofi_view_error_dialog ( const char *msg, G_GNUC_UNUSED int markup )
{
fputs ( msg, stderr );
}
int show_error_message ( const char *msg, int markup )
{
- error_dialog ( msg, markup );
+ rofi_view_error_dialog ( msg, markup );
return 0;
}