]> Pileus Git - ~andy/gtk/blobdiff - gtk/gtkappchoosermodule.c
texthandle: Set a bigger input shape, covering the line height
[~andy/gtk] / gtk / gtkappchoosermodule.c
index bc5c0e74af3c58acdcc1da264bff3f43a0f5057c..151b3657fc29c22bea13bcfdb00b2bd60b5de899 100644 (file)
@@ -14,9 +14,7 @@
  * Library General Public License for more details.
  *
  * You should have received a copy of the GNU Library General Public
- * License along with the Gnome Library; see the file COPYING.LIB.  If not,
- * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
+ * License along with this library. If not, see <http://www.gnu.org/licenses/>.
  *
  * Authors: Cosimo Cecchi <ccecchi@redhat.com>
  */
@@ -28,7 +26,6 @@
 #include <gio/gio.h>
 
 #include "gtkappchooseronline.h"
-#include "gtkappchooseronlinedummy.h"
 
 #ifdef ENABLE_PACKAGEKIT
 #include "gtkappchooseronlinepk.h"
@@ -45,18 +42,16 @@ _gtk_app_chooser_module_ensure (void)
   G_LOCK (registered_ep);
 
   if (!registered_ep)
-{
-    registered_ep = TRUE;
-
-    ep = g_io_extension_point_register ("gtkappchooser-online");
-    g_io_extension_point_set_required_type (ep, GTK_TYPE_APP_CHOOSER_ONLINE);
+    {
+      registered_ep = TRUE;
 
-    _gtk_app_chooser_online_dummy_get_type ();
+      ep = g_io_extension_point_register ("gtkappchooser-online");
+      g_io_extension_point_set_required_type (ep, GTK_TYPE_APP_CHOOSER_ONLINE);
 
 #ifdef ENABLE_PACKAGEKIT
-    _gtk_app_chooser_online_pk_get_type ();
+      _gtk_app_chooser_online_pk_get_type ();
 #endif
-  }
+    }
 
   G_UNLOCK (registered_ep);
 }