@@ -135,7 +135,6 @@ on_bus_acquired (GDBusConnection *connection,
135
135
const char * name ,
136
136
gpointer user_data )
137
137
{
138
- g_warning ("on_bus_acquired start" );
139
138
MetaX11Display * x11_display = user_data ;
140
139
MetaX11DisplayPrivate * priv =
141
140
meta_x11_display_get_instance_private (x11_display );
@@ -144,13 +143,11 @@ on_bus_acquired (GDBusConnection *connection,
144
143
connection ,
145
144
"/org/gnome/Mutter/X11" ,
146
145
NULL );
147
- g_warning ("on_bus_acquired end" );
148
146
}
149
147
150
148
static void
151
149
update_ui_scaling_factor (MetaX11Display * x11_display )
152
150
{
153
- g_warning ("update_ui_scaling_factor start" );
154
151
MetaX11DisplayPrivate * priv =
155
152
meta_x11_display_get_instance_private (x11_display );
156
153
MetaBackend * backend = backend_from_x11_display (x11_display );
@@ -181,7 +178,6 @@ update_ui_scaling_factor (MetaX11Display *x11_display)
181
178
}
182
179
183
180
meta_dbus_x11_set_ui_scaling_factor (priv -> dbus_api , ui_scaling_factor );
184
- g_warning ("update_ui_scaling_factor emd" );
185
181
}
186
182
187
183
static void
@@ -1191,7 +1187,6 @@ on_window_visibility_updated (MetaDisplay *display,
1191
1187
static void
1192
1188
initialize_dbus_interface (MetaX11Display * x11_display )
1193
1189
{
1194
- g_warning ("initialize_dbus_interface start" );
1195
1190
MetaX11DisplayPrivate * priv =
1196
1191
meta_x11_display_get_instance_private (x11_display );
1197
1192
@@ -1204,7 +1199,6 @@ initialize_dbus_interface (MetaX11Display *x11_display)
1204
1199
NULL , NULL ,
1205
1200
x11_display , NULL );
1206
1201
update_ui_scaling_factor (x11_display );
1207
- g_warning ("initialize_dbus_interface end" );
1208
1202
}
1209
1203
1210
1204
/**
@@ -1239,9 +1233,7 @@ meta_x11_display_new (MetaDisplay *display,
1239
1233
MetaBackend * backend = meta_get_backend ();
1240
1234
MetaMonitorManager * monitor_manager =
1241
1235
meta_backend_get_monitor_manager (backend );
1242
- g_warning ("aaaaa" );
1243
1236
MetaSettings * settings = meta_backend_get_settings (backend );
1244
- g_warning ("bbbb" );
1245
1237
/* A list of all atom names, so that we can intern them in one go. */
1246
1238
const char * atom_names [] = {
1247
1239
#define item (x ) #x ,
@@ -1310,9 +1302,7 @@ meta_x11_display_new (MetaDisplay *display,
1310
1302
x11_display = g_object_new (META_TYPE_X11_DISPLAY , NULL );
1311
1303
x11_display -> gdk_display = gdk_display ;
1312
1304
x11_display -> display = display ;
1313
- g_warning ("1" );
1314
1305
initialize_dbus_interface (x11_display );
1315
- g_warning ("2" );
1316
1306
1317
1307
/* here we use XDisplayName which is what the user
1318
1308
* probably put in, vs. DisplayString(display) which is
0 commit comments