summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2010-09-09 02:25:25 +0200
committerJavier Jardón <jjardon@gnome.org>2010-09-09 02:26:43 +0200
commit72ac2175e2f0d3acd321ab8b8201e01806c3bfc4 (patch)
tree851e37afdec080cdb8763fd5d626ac82fd589f35
parente08c43faf45540eea0f024818d8b2ff30a355b82 (diff)
downloadgtk+-72ac2175e2f0d3acd321ab8b8201e01806c3bfc4.tar.gz
gtk/gtkhandlebox.c: Do not use gdk_window_get_deskrelative_origin()
This completes commit bd277fad50704f6a39619cb418204bdfee112b98
-rw-r--r--gtk/gtkhandlebox.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/gtk/gtkhandlebox.c b/gtk/gtkhandlebox.c
index 0221ae6777..423a4f25ef 100644
--- a/gtk/gtkhandlebox.c
+++ b/gtk/gtkhandlebox.c
@@ -57,9 +57,6 @@ struct _GtkHandleBoxPrivate
/* Variables used during a drag
*/
- gint deskoff_x; /* Offset between root relative coords */
- gint deskoff_y; /* and deskrelative coords */
-
gint orig_x;
gint orig_y;
@@ -1144,13 +1141,11 @@ gtk_handle_box_button_press (GtkWidget *widget,
{
GtkWidget *invisible = gtk_handle_box_get_invisible ();
GdkWindow *window;
- gint desk_x, desk_y;
gint root_x, root_y;
gint width, height;
gtk_invisible_set_screen (GTK_INVISIBLE (invisible),
gtk_widget_get_screen (GTK_WIDGET (hb)));
- gdk_window_get_deskrelative_origin (priv->bin_window, &desk_x, &desk_y);
gdk_window_get_origin (priv->bin_window, &root_x, &root_y);
gdk_drawable_get_size (priv->bin_window, &width, &height);
@@ -1162,9 +1157,6 @@ gtk_handle_box_button_press (GtkWidget *widget,
priv->float_allocation.width = width;
priv->float_allocation.height = height;
- priv->deskoff_x = desk_x - root_x;
- priv->deskoff_y = desk_y - root_y;
-
window = gtk_widget_get_window (widget);
if (gdk_window_is_viewable (window))
{
@@ -1353,8 +1345,6 @@ gtk_handle_box_motion (GtkWidget *widget,
gint width, height;
gdk_drawable_get_size (priv->float_window, &width, &height);
- new_x += priv->deskoff_x;
- new_y += priv->deskoff_y;
switch (handle_position)
{