SF.net SVN: geany:[3314] trunk

eht16 at users.sourceforge.net eht16 at xxxxx
Thu Dec 4 15:56:34 UTC 2008


Revision: 3314
          http://geany.svn.sourceforge.net/geany/?rev=3314&view=rev
Author:   eht16
Date:     2008-12-04 15:56:33 +0000 (Thu, 04 Dec 2008)

Log Message:
-----------
Removed unused code.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/src/support.c
    trunk/src/support.h

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2008-12-04 15:56:10 UTC (rev 3313)
+++ trunk/ChangeLog	2008-12-04 15:56:33 UTC (rev 3314)
@@ -1,3 +1,9 @@
+2008-12-04  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
+
+ * src/support.c, src/support.h:
+   Removed unused code.
+
+
 2008-12-04  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
 
  * src/plugindata.h, src/document.h, doc/pluginsymbols.c,

Modified: trunk/src/support.c
===================================================================
--- trunk/src/support.c	2008-12-04 15:56:10 UTC (rev 3313)
+++ trunk/src/support.c	2008-12-04 15:56:33 UTC (rev 3314)
@@ -41,104 +41,3 @@
     g_warning ("Widget not found: %s", widget_name);
   return found_widget;
 }
-
-static GList *pixmaps_directories = NULL;
-
-/* Use this function to set the directory containing installed pixmaps. */
-void
-add_pixmap_directory                   (const gchar     *directory)
-{
-  pixmaps_directories = g_list_prepend (pixmaps_directories,
-                                        g_strdup (directory));
-}
-
-/* This is an internally used function to find pixmap files. */
-static gchar*
-find_pixmap_file                       (const gchar     *filename)
-{
-  GList *elem;
-
-  /* We step through each of the pixmaps directory to find it. */
-  elem = pixmaps_directories;
-  while (elem)
-    {
-      gchar *pathname = g_strdup_printf ("%s%s%s", (gchar*)elem->data,
-                                         G_DIR_SEPARATOR_S, filename);
-      if (g_file_test (pathname, G_FILE_TEST_EXISTS))
-        return pathname;
-      g_free (pathname);
-      elem = elem->next;
-    }
-  return NULL;
-}
-
-/* This is an internally used function to create pixmaps. */
-GtkWidget*
-create_pixmap                          (GtkWidget       *widget,
-                                        const gchar     *filename)
-{
-  gchar *pathname = NULL;
-  GtkWidget *pixmap;
-
-  if (!filename || !filename[0])
-      return gtk_image_new ();
-
-  pathname = find_pixmap_file (filename);
-
-  if (!pathname)
-    {
-      g_warning (_("Couldn't find pixmap file: %s"), filename);
-      return gtk_image_new ();
-    }
-
-  pixmap = gtk_image_new_from_file (pathname);
-  g_free (pathname);
-  return pixmap;
-}
-
-/* This is an internally used function to create pixmaps. */
-GdkPixbuf*
-create_pixbuf                          (const gchar     *filename)
-{
-  gchar *pathname = NULL;
-  GdkPixbuf *pixbuf;
-  GError *error = NULL;
-
-  if (!filename || !filename[0])
-      return NULL;
-
-  pathname = find_pixmap_file (filename);
-
-  if (!pathname)
-    {
-      g_warning (_("Couldn't find pixmap file: %s"), filename);
-      return NULL;
-    }
-
-  pixbuf = gdk_pixbuf_new_from_file (pathname, &error);
-  if (!pixbuf)
-    {
-      g_critical ("Failed to load pixbuf file: %s: %s\n",
-               pathname, error->message);
-      g_error_free (error);
-    }
-  g_free (pathname);
-  return pixbuf;
-}
-
-/* This is used to set ATK action descriptions. */
-void
-glade_set_atk_action_description       (AtkAction       *action,
-                                        const gchar     *action_name,
-                                        const gchar     *description)
-{
-  gint n_actions, i;
-
-  n_actions = atk_action_get_n_actions (action);
-  for (i = 0; i < n_actions; i++)
-    {
-      if (!strcmp (atk_action_get_name (action, i), action_name))
-        atk_action_set_description (action, i, description);
-    }
-}
-

Modified: trunk/src/support.h
===================================================================
--- trunk/src/support.h	2008-12-04 15:56:10 UTC (rev 3313)
+++ trunk/src/support.h	2008-12-04 15:56:33 UTC (rev 3314)
@@ -45,25 +45,3 @@
  */
 GtkWidget*  lookup_widget              (GtkWidget       *widget,
                                         const gchar     *widget_name);
-
-
-/* Use this function to set the directory containing installed pixmaps. */
-void        add_pixmap_directory       (const gchar     *directory);
-
-
-/*
- * Private Functions.
- */
-
-/* This is used to create the pixmaps used in the interface. */
-GtkWidget*  create_pixmap              (GtkWidget       *widget,
-                                        const gchar     *filename);
-
-/* This is used to create the pixbufs used in the interface. */
-GdkPixbuf*  create_pixbuf              (const gchar     *filename);
-
-/* This is used to set ATK action descriptions. */
-void        glade_set_atk_action_description (AtkAction       *action,
-                                              const gchar     *action_name,
-                                              const gchar     *description);
-


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list