[gtk+] Delete unused leftover static function
- From: Tor Lillqvist <tml src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [gtk+] Delete unused leftover static function
- Date: Sun, 18 Oct 2009 09:08:56 +0000 (UTC)
commit be5c06d7995fc0bf6b714c2e698f4cdf4fea4473
Author: Tor Lillqvist <tml iki fi>
Date: Sun Oct 18 12:08:18 2009 +0300
Delete unused leftover static function
gdk/win32/gdkwindow-win32.c | 32 --------------------------------
1 files changed, 0 insertions(+), 32 deletions(-)
---
diff --git a/gdk/win32/gdkwindow-win32.c b/gdk/win32/gdkwindow-win32.c
index 9b21db3..a9681e9 100644
--- a/gdk/win32/gdkwindow-win32.c
+++ b/gdk/win32/gdkwindow-win32.c
@@ -2773,38 +2773,6 @@ _gdk_window_get_functions (GdkWindow *window,
return (functions_set != NULL);
}
-static void
-QueryTree (HWND hwnd,
- HWND **children,
- gint *nchildren)
-{
- guint i, n;
- HWND child = NULL;
-
- n = 0;
- do {
- if (n == 0)
- child = GetWindow (hwnd, GW_CHILD);
- else
- child = GetWindow (child, GW_HWNDNEXT);
- if (child != NULL)
- n++;
- } while (child != NULL);
-
- if (n > 0)
- {
- *children = g_new (HWND, n);
- for (i = 0; i < n; i++)
- {
- if (i == 0)
- child = GetWindow (hwnd, GW_CHILD);
- else
- child = GetWindow (child, GW_HWNDNEXT);
- *children[i] = child;
- }
- }
-}
-
static gboolean
gdk_win32_window_set_static_gravities (GdkWindow *window,
gboolean use_static)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]