xed-documents-panel: Remove an unused variable
This commit is contained in:
parent
76ce469bfa
commit
909ea55a7c
|
@ -482,7 +482,7 @@ menu_position (GtkMenu *menu,
|
||||||
{
|
{
|
||||||
GtkTreePath *path;
|
GtkTreePath *path;
|
||||||
GdkRectangle rect;
|
GdkRectangle rect;
|
||||||
gint wx, wy;
|
gint wy;
|
||||||
GtkAllocation allocation;
|
GtkAllocation allocation;
|
||||||
GtkRequisition requisition;
|
GtkRequisition requisition;
|
||||||
GtkWidget *w;
|
GtkWidget *w;
|
||||||
|
@ -495,7 +495,6 @@ menu_position (GtkMenu *menu,
|
||||||
|
|
||||||
gtk_tree_view_get_cell_area (GTK_TREE_VIEW (w), path, NULL, &rect);
|
gtk_tree_view_get_cell_area (GTK_TREE_VIEW (w), path, NULL, &rect);
|
||||||
|
|
||||||
wx = rect.x;
|
|
||||||
wy = rect.y;
|
wy = rect.y;
|
||||||
|
|
||||||
gdk_window_get_origin (gtk_widget_get_window (w), x, y);
|
gdk_window_get_origin (gtk_widget_get_window (w), x, y);
|
||||||
|
|
Loading…
Reference in New Issue