summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-06-02 16:34:52 +0200
committerDave Davenport <qball@gmpclient.org>2017-06-02 16:34:52 +0200
commitea7d20d1503836eba0c16f8a1960b8f462911f0f (patch)
treecf6dd94d66466930f71d32b2e64a759c8fed5238 /test
parent9915857a2ec4d13d83a963252264394fb7ce3f28 (diff)
Change Orientation enum to RofiOrientation.
Diffstat (limited to 'test')
-rw-r--r--test/box-test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/box-test.c b/test/box-test.c
index ba0b3337..fd15eba8 100644
--- a/test/box-test.c
+++ b/test/box-test.c
@@ -92,7 +92,7 @@ void rofi_view_get_current_monitor ( G_GNUC_UNUSED int *width, G_GNUC_UNUSED int
int main ( G_GNUC_UNUSED int argc, G_GNUC_UNUSED char **argv )
{
{
- box *b = box_create ( "box", ORIENTATION_HORIZONTAL );
+ box *b = box_create ( "box", ROFI_ORIENTATION_HORIZONTAL );
//box_set_padding ( b, 5 );
widget_resize ( WIDGET (b), 100, 20);
@@ -154,7 +154,7 @@ int main ( G_GNUC_UNUSED int argc, G_GNUC_UNUSED char **argv )
widget_free ( WIDGET ( b ) );
}
{
- box *b = box_create ( "box", ORIENTATION_VERTICAL );
+ box *b = box_create ( "box", ROFI_ORIENTATION_VERTICAL );
widget_resize ( WIDGET (b), 20, 100);
//box_set_padding ( b, 5 );
@@ -215,7 +215,7 @@ int main ( G_GNUC_UNUSED int argc, G_GNUC_UNUSED char **argv )
widget_free ( WIDGET ( b ) );
}
{
- box *b = box_create ( "box", ORIENTATION_VERTICAL );
+ box *b = box_create ( "box", ROFI_ORIENTATION_VERTICAL );
widget_resize ( WIDGET (b), 20, 90);
//box_set_padding ( b, 5 );
widget *wid1 = g_malloc0(sizeof(widget));