[gnome-control-center] wacom: Update test-wacom for API change
- From: Bastien Nocera <hadess src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-control-center] wacom: Update test-wacom for API change
- Date: Tue, 14 Feb 2012 19:38:19 +0000 (UTC)
commit 472317bc10803f746c8aed15a5354c8788228598
Author: Bastien Nocera <hadess hadess net>
Date: Tue Feb 14 18:31:12 2012 +0000
wacom: Update test-wacom for API change
panels/wacom/test-wacom.c | 9 ++++++---
1 files changed, 6 insertions(+), 3 deletions(-)
---
diff --git a/panels/wacom/test-wacom.c b/panels/wacom/test-wacom.c
index 7dc7f9a..c3012cc 100644
--- a/panels/wacom/test-wacom.c
+++ b/panels/wacom/test-wacom.c
@@ -19,13 +19,13 @@ add_page (GList *devices,
GtkWidget *notebook)
{
GtkWidget *widget;
- GsdWacomDevice *stylus, *eraser;
+ GsdWacomDevice *stylus, *eraser, *pad;
GList *l;
if (devices == NULL)
return;
- stylus = eraser = NULL;
+ stylus = eraser = pad = NULL;
for (l = devices; l ; l = l->next) {
switch (gsd_wacom_device_get_device_type (l->data)) {
case WACOM_TYPE_ERASER:
@@ -34,6 +34,9 @@ add_page (GList *devices,
case WACOM_TYPE_STYLUS:
stylus = l->data;
break;
+ case WACOM_TYPE_PAD:
+ pad = l->data;
+ break;
default:
/* Nothing */
;
@@ -41,7 +44,7 @@ add_page (GList *devices,
}
g_list_free (devices);
- widget = cc_wacom_page_new (NULL, stylus, eraser);
+ widget = cc_wacom_page_new (NULL, stylus, eraser, pad);
cc_wacom_page_set_navigation (CC_WACOM_PAGE (widget), GTK_NOTEBOOK (notebook), FALSE);
gtk_notebook_append_page (GTK_NOTEBOOK (notebook), widget, NULL);
gtk_widget_show (widget);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]