~awn-testing/awn/awn-rewrite-ua-support

« back to all changes in this revision

Viewing changes to src/awn-applet-manager.c

  • Committer: R. Cryderman
  • Date: 2009-07-15 17:12:11 UTC
  • Revision ID: rcryderman@gmail.com-20090715171211-tsi1qbzucg791cxv
* .bzrignore:
* INSTALL:
        Sync with files in Rewrite.
* src/awn-applet-manager.c:
        Removed some debugs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA.
17
17
 *
18
18
 *  Author : Neil Jagdish Patel <njpatel@gmail.com>
19
 
 *bind
 
19
 *
20
20
 */
21
21
 
22
22
#include "config.h"
585
585
    g_type_class_unref (priv->klass);
586
586
    priv->klass = NULL;
587
587
  }
588
 
//  g_debug ("%s, orient = %d",__func__,priv->orient);
589
588
  switch (priv->orient)
590
589
  {
591
590
    case AWN_ORIENTATION_TOP:
730
729
  gint                     i = 0;
731
730
  gint                     applet_num = 0;
732
731
 
733
 
  g_debug ("%s",__func__);
734
732
  if (!GTK_WIDGET_REALIZED (manager))
735
733
    return;
736
734
 
768
766
      continue;
769
767
    }
770
768
 
771
 
//    g_debug ("%s:  %s, %s",__func__,tokens[0],tokens[1]);
772
769
    /* See if the applet already exists */
773
770
    applet = g_hash_table_lookup (priv->applets, tokens[1]);
774
771
 
775
772
    /* If not, create it */
776
773
    if (applet == NULL)
777
774
    {
778
 
      g_debug ("applet does not exist");
779
775
      applet = create_applet (manager, tokens[0], tokens[1]);
780
776
      if (!applet)
781
777
      {