anjuta r3491 - in trunk: . plugins/editor
- From: sgranjoux svn gnome org
- To: svn-commits-list gnome org
- Subject: anjuta r3491 - in trunk: . plugins/editor
- Date: Sat, 19 Jan 2008 09:39:10 +0000 (GMT)
Author: sgranjoux
Date: Sat Jan 19 09:39:10 2008
New Revision: 3491
URL: http://svn.gnome.org/viewvc/anjuta?rev=3491&view=rev
Log:
* plugins/editor/text_editor.c:
Fix a bug due to the previous patch: Unable to save new file in
Scintilla
Modified:
trunk/ChangeLog
trunk/plugins/editor/text_editor.c
Modified: trunk/plugins/editor/text_editor.c
==============================================================================
--- trunk/plugins/editor/text_editor.c (original)
+++ trunk/plugins/editor/text_editor.c Sat Jan 19 09:39:10 2008
@@ -1643,22 +1643,17 @@
GnomeVFSURI *src_uri;
GnomeVFSURI *dest_uri;
GnomeVFSFileInfo info;
+ gboolean have_info;
src_uri = gnome_vfs_uri_new (save_uri);
dest_uri = gnome_vfs_uri_new (te->uri);
-
- result = gnome_vfs_get_file_info_uri (dest_uri,
+
+ /* have_info is FALSE on newly created file */
+ have_info = gnome_vfs_get_file_info_uri (dest_uri,
&info,
GNOME_VFS_FILE_INFO_DEFAULT |
- GNOME_VFS_FILE_INFO_FOLLOW_LINKS);
- if (result != GNOME_VFS_OK)
- {
- anjuta_util_dialog_error (parent,
- _("Couldn't get file info %s : %s"),
- te->uri,
- gnome_vfs_result_to_string (result));
- }
- else
+ GNOME_VFS_FILE_INFO_FOLLOW_LINKS) == GNOME_VFS_OK;
+ if (have_info)
{
if (info.flags & GNOME_VFS_FILE_FLAGS_SYMLINK &&
info.valid_fields & GNOME_VFS_FILE_INFO_FIELDS_SYMLINK_NAME)
@@ -1666,42 +1661,42 @@
gnome_vfs_uri_unref (dest_uri);
dest_uri = gnome_vfs_uri_new (info.symlink_name);
}
- /* Move 'file~' to 'file' */
- result = gnome_vfs_xfer_uri (src_uri, dest_uri,
- GNOME_VFS_XFER_DELETE_ITEMS |
- GNOME_VFS_XFER_REMOVESOURCE,
- GNOME_VFS_XFER_ERROR_MODE_ABORT,
- GNOME_VFS_XFER_OVERWRITE_MODE_REPLACE,
- NULL, NULL);
- /* we need to update UI with the call to scintilla */
- text_editor_thaw (te);
- if (result != GNOME_VFS_OK)
- {
- anjuta_util_dialog_error (parent,
- _("Could not save file %s: %s."),
- te->uri,
- gnome_vfs_result_to_string (result));
- }
- else
+ }
+ /* Move 'file~' to 'file' */
+ result = gnome_vfs_xfer_uri (src_uri, dest_uri,
+ GNOME_VFS_XFER_DELETE_ITEMS |
+ GNOME_VFS_XFER_REMOVESOURCE,
+ GNOME_VFS_XFER_ERROR_MODE_ABORT,
+ GNOME_VFS_XFER_OVERWRITE_MODE_REPLACE,
+ NULL, NULL);
+ /* we need to update UI with the call to scintilla */
+ text_editor_thaw (te);
+ if (result != GNOME_VFS_OK)
+ {
+ anjuta_util_dialog_error (parent,
+ _("Could not save file %s: %s."),
+ te->uri,
+ gnome_vfs_result_to_string (result));
+ }
+ else
+ {
+ if (have_info)
{
result = gnome_vfs_set_file_info_uri (dest_uri, &info,
GNOME_VFS_SET_FILE_INFO_PERMISSIONS);
if (result != GNOME_VFS_OK)
{
- anjuta_util_dialog_error (parent,
+ anjuta_util_dialog_warning (parent,
_("Could not set file permissions %s: %s."),
te->uri,
gnome_vfs_result_to_string (result));
}
- else
- {
- scintilla_send_message (SCINTILLA (te->scintilla),
- SCI_SETSAVEPOINT, 0, 0);
- g_signal_emit_by_name (G_OBJECT (te), "saved", te->uri);
- anjuta_status (te->status, _("File saved successfully"), 5);
- ret = TRUE;
- }
}
+ scintilla_send_message (SCINTILLA (te->scintilla),
+ SCI_SETSAVEPOINT, 0, 0);
+ g_signal_emit_by_name (G_OBJECT (te), "saved", te->uri);
+ anjuta_status (te->status, _("File saved successfully"), 5);
+ ret = TRUE;
}
gnome_vfs_uri_unref (src_uri);
gnome_vfs_uri_unref (dest_uri);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]