summaryrefslogtreecommitdiff
path: root/test/endless
diff options
context:
space:
mode:
authorMatt Watson <mattdangerw@gmail.com>2016-03-30 20:26:42 -0700
committerPhilip Chimento <philip@endlessm.com>2016-04-13 13:43:02 -0700
commit1422952da02779a180381ce68d259e804b8108a3 (patch)
treec17d44151f92e56c241f5a962690cfa55f89f34b /test/endless
parentd23e09a6eaaf16e56236095146a800af47232679 (diff)
flexygrid: ignore deprecations
The whole file is deprecated, we shouldn't make noise at using deprecated glib functions. https://phabricator.endlessm.com/T11000
Diffstat (limited to 'test/endless')
-rw-r--r--test/endless/test-flexy-grid.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/endless/test-flexy-grid.c b/test/endless/test-flexy-grid.c
index 0c6c3cc..ec16bf2 100644
--- a/test/endless/test-flexy-grid.c
+++ b/test/endless/test-flexy-grid.c
@@ -5,6 +5,8 @@
#include "run-tests.h"
+G_GNUC_BEGIN_IGNORE_DEPRECATIONS
+
typedef struct
{
EosFlexyGrid *grid;
@@ -73,3 +75,5 @@ add_flexy_grid_test (void)
ADD_FLEXY_GRID_TEST ("/flexy-grid/get-set-cell-size", flexy_grid_cell_size_access);
ADD_FLEXY_GRID_TEST ("/flexy-grid/get-set-cell-spacing", flexy_grid_cell_spacing_access);
}
+
+G_GNUC_END_IGNORE_DEPRECATIONS