summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2003-09-18 11:23:39 +0000
committerAlexander Larsson <alexl@src.gnome.org>2003-09-18 11:23:39 +0000
commit6d2a16a553473a35d93dc112d88917f25ddbdcb4 (patch)
tree0cc1f78b422a2b6db62378781d8bbf36c9ef35da /src
parent88977b14a0ccca831b008c21f9d2440f998285b5 (diff)
downloadnautilus-6d2a16a553473a35d93dc112d88917f25ddbdcb4.tar.gz
Fix compilation error (bug #122537). Patch by david.hawthorne@sun.com
2003-09-18 Alexander Larsson <alexl@redhat.com> * src/file-manager/fm-properties-window.c (permission_change_callback): Fix compilation error (bug #122537). Patch by david.hawthorne@sun.com
Diffstat (limited to 'src')
-rw-r--r--src/file-manager/fm-properties-window.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/file-manager/fm-properties-window.c b/src/file-manager/fm-properties-window.c
index 8435f8ac3..12097be32 100644
--- a/src/file-manager/fm-properties-window.c
+++ b/src/file-manager/fm-properties-window.c
@@ -2438,9 +2438,10 @@ create_emblems_page (FMPropertiesWindow *window)
static void
permission_change_callback (NautilusFile *file, GnomeVFSResult result, gpointer callback_data)
{
+ FMPropertiesWindow *window;
g_assert (callback_data != NULL);
- FMPropertiesWindow *window = (FMPropertiesWindow *)callback_data;
+ *window = (FMPropertiesWindow *)callback_data;
if (window->details->long_operation_underway == 1) {
/* finished !! */
gdk_window_set_cursor (GTK_WIDGET (window)->window, NULL);