Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Files
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
431
Issues
431
List
Boards
Labels
Service Desk
Milestones
Merge Requests
25
Merge Requests
25
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GNOME
Files
Commits
8881c805
Commit
8881c805
authored
Jan 19, 2000
by
Ettore Perazzoli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use `gnome_vfs_file_info_unref', not `gnome_vfs_file_info_destroy'.
parent
3067cd62
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
28 deletions
+13
-28
ChangeLog-20000414
ChangeLog-20000414
+9
-0
libnautilus-extensions/nautilus-file-operations.c
libnautilus-extensions/nautilus-file-operations.c
+0
-8
libnautilus-private/nautilus-file-operations.c
libnautilus-private/nautilus-file-operations.c
+0
-8
src/file-manager/dfos-xfer.c
src/file-manager/dfos-xfer.c
+0
-8
src/nautilus-applicable-views.c
src/nautilus-applicable-views.c
+2
-2
src/ntl-uri-map.c
src/ntl-uri-map.c
+2
-2
No files found.
ChangeLog-20000414
View file @
8881c805
2000-01-18 Ettore Perazzoli <ettore@helixcode.com>
* src/file-manager/dfos-xfer.c (xfer_info_destroy): Removed `#if
0'ed out function.
* src/ntl-uri-map.c (nautilus_navinfo_new): Use
`gnome_vfs_file_info_unref()' instead of
`gnome_vfs_file_info_destroy()'.
2000-01-18 Andy Hertzfeld <andy@eazel.com>
* libnautilus/gnome-icon-container-private.h:
...
...
libnautilus-extensions/nautilus-file-operations.c
View file @
8881c805
...
...
@@ -62,14 +62,6 @@ xfer_info_new (GnomeVFSAsyncHandle *handle,
return
new
;
}
#if 0
static void
xfer_info_destroy (XferInfo *info)
{
g_free (info);
}
#endif
static
void
xfer_dialog_clicked_callback
(
DFOSXferProgressDialog
*
dialog
,
gint
button_number
,
...
...
libnautilus-private/nautilus-file-operations.c
View file @
8881c805
...
...
@@ -62,14 +62,6 @@ xfer_info_new (GnomeVFSAsyncHandle *handle,
return
new
;
}
#if 0
static void
xfer_info_destroy (XferInfo *info)
{
g_free (info);
}
#endif
static
void
xfer_dialog_clicked_callback
(
DFOSXferProgressDialog
*
dialog
,
gint
button_number
,
...
...
src/file-manager/dfos-xfer.c
View file @
8881c805
...
...
@@ -62,14 +62,6 @@ xfer_info_new (GnomeVFSAsyncHandle *handle,
return
new
;
}
#if 0
static void
xfer_info_destroy (XferInfo *info)
{
g_free (info);
}
#endif
static
void
xfer_dialog_clicked_callback
(
DFOSXferProgressDialog
*
dialog
,
gint
button_number
,
...
...
src/nautilus-applicable-views.c
View file @
8881c805
...
...
@@ -266,13 +266,13 @@ nautilus_navinfo_new(Nautilus_NavigationRequestInfo *nri,
meta_keys
);
if
(
res
!=
GNOME_VFS_OK
)
{
gnome_vfs_file_info_
destroy
(
vfs_fileinfo
);
gnome_vfs_file_info_
unref
(
vfs_fileinfo
);
nautilus_navinfo_free
(
navinfo
);
navinfo
=
NULL
;
goto
out
;
}
navinfo
->
navinfo
.
content_type
=
g_strdup
(
gnome_vfs_file_info_get_mime_type
(
vfs_fileinfo
));
gnome_vfs_file_info_
destroy
(
vfs_fileinfo
);
gnome_vfs_file_info_
unref
(
vfs_fileinfo
);
}
...
...
src/ntl-uri-map.c
View file @
8881c805
...
...
@@ -266,13 +266,13 @@ nautilus_navinfo_new(Nautilus_NavigationRequestInfo *nri,
meta_keys
);
if
(
res
!=
GNOME_VFS_OK
)
{
gnome_vfs_file_info_
destroy
(
vfs_fileinfo
);
gnome_vfs_file_info_
unref
(
vfs_fileinfo
);
nautilus_navinfo_free
(
navinfo
);
navinfo
=
NULL
;
goto
out
;
}
navinfo
->
navinfo
.
content_type
=
g_strdup
(
gnome_vfs_file_info_get_mime_type
(
vfs_fileinfo
));
gnome_vfs_file_info_
destroy
(
vfs_fileinfo
);
gnome_vfs_file_info_
unref
(
vfs_fileinfo
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment