~vish/ubuntu/maverick/pidgin/bug25979

« back to all changes in this revision

Viewing changes to pidgin/gtkdnd-hints.c

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2009-10-09 19:40:26 UTC
  • mfrom: (1.4.1 upstream) (46.1.10 karmic)
  • Revision ID: james.westby@ubuntu.com-20091009194026-wbqqh0bsbz19nx5q
Tags: 1:2.6.2-1ubuntu7
* Don't stick the buddy list window to all desktops as some
  window managers have trouble to properly unstick it (LP: #346840)
  - debian/patches/11_buddy_list_really_show.patch
* Always use default tray icon size on KDE (LP: #209440)
  - debian/patches/62_tray_icon_size_kde.patch
* Use scrollbars in the preferences dialog if the screen height is
  below 700 px instead of 600 px
  - debian/patches/60_1024x600_gtkprefs.c.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
/**
47
47
 * Info about each hint widget. See DndHintWindowId enum.
48
48
 */
49
 
static HintWindowInfo hint_windows[] = { 
 
49
static HintWindowInfo hint_windows[] = {
50
50
        { NULL, "arrow-up.xpm",   -13/2,     0 },
51
51
        { NULL, "arrow-down.xpm", -13/2,   -16 },
52
52
        { NULL, "arrow-left.xpm",     0, -13/2 },
139
139
                dnd_hints_hide(i);
140
140
}
141
141
 
142
 
void 
 
142
void
143
143
dnd_hints_hide(DndHintWindowId i)
144
144
{
145
145
        GtkWidget *w = hint_windows[i].widget;
148
148
                gtk_widget_hide(w);
149
149
}
150
150
 
151
 
void 
 
151
void
152
152
dnd_hints_show(DndHintWindowId id, gint x, gint y)
153
153
{
154
154
        GtkWidget *w;
165
165
        }
166
166
}
167
167
 
168
 
void 
 
168
void
169
169
dnd_hints_show_relative(DndHintWindowId id, GtkWidget *widget,
170
170
                                                DndHintPosition horiz, DndHintPosition vert)
171
171
{