atkwindow.cxx (86e1cf34) atkwindow.cxx (a72d41dc)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 277 unchanged lines hidden (view full) ---

286 parent_type = ATK_TYPE_OBJECT;
287 }
288
289 GTypeQuery type_query;
290 g_type_query( parent_type, &type_query );
291
292 static const GTypeInfo typeInfo =
293 {
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 277 unchanged lines hidden (view full) ---

286 parent_type = ATK_TYPE_OBJECT;
287 }
288
289 GTypeQuery type_query;
290 g_type_query( parent_type, &type_query );
291
292 static const GTypeInfo typeInfo =
293 {
294 type_query.class_size,
294 (guint16) type_query.class_size,
295 (GBaseInitFunc) NULL,
296 (GBaseFinalizeFunc) NULL,
297 (GClassInitFunc) ooo_window_wrapper_class_init,
298 (GClassFinalizeFunc) NULL,
299 NULL,
295 (GBaseInitFunc) NULL,
296 (GBaseFinalizeFunc) NULL,
297 (GClassInitFunc) ooo_window_wrapper_class_init,
298 (GClassFinalizeFunc) NULL,
299 NULL,
300 type_query.instance_size,
300 (guint16) type_query.instance_size,
301 0,
302 (GInstanceInitFunc) NULL,
303 NULL
304 } ;
305
306 type = g_type_register_static (parent_type, "OOoWindowAtkObject", &typeInfo, (GTypeFlags)0) ;
307 }
308

--- 19 unchanged lines hidden ---
301 0,
302 (GInstanceInitFunc) NULL,
303 NULL
304 } ;
305
306 type = g_type_register_static (parent_type, "OOoWindowAtkObject", &typeInfo, (GTypeFlags)0) ;
307 }
308

--- 19 unchanged lines hidden ---