Fix wrong // comment spacing.
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@1820 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
parent
719c2131cf
commit
225e404db5
@ -6,6 +6,8 @@
|
||||
* src/utils.c, src/highlighting.c, src/sciwrappers.c, src/document.c,
|
||||
src/symbols.c:
|
||||
Fix wrong brace formatting.
|
||||
* src/about.c, src/callbacks.c, src/keyfile.c, src/editor.c:
|
||||
Fix wrong // comment spacing.
|
||||
|
||||
|
||||
2007-08-23 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
|
||||
|
@ -111,7 +111,7 @@ static GtkWidget *create_dialog(void)
|
||||
|
||||
dialog = gtk_dialog_new();
|
||||
|
||||
//configure dialog
|
||||
// configure dialog
|
||||
gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(app->window));
|
||||
gtk_window_set_position(GTK_WINDOW(dialog), GTK_WIN_POS_CENTER_ON_PARENT);
|
||||
gtk_window_set_title(GTK_WINDOW(dialog), _("About Geany"));
|
||||
|
@ -1147,7 +1147,7 @@ on_find_previous1_activate (GtkMenuItem *menuitem,
|
||||
if (search_data.text == NULL) return;
|
||||
|
||||
if (search_data.flags & SCFIND_REGEXP)
|
||||
utils_beep(); //Can't reverse search order for a regex (find next ignores search backwards)
|
||||
utils_beep(); // Can't reverse search order for a regex (find next ignores search backwards)
|
||||
else
|
||||
{
|
||||
gint result = document_find_text(idx, search_data.text, search_data.flags,
|
||||
|
@ -675,7 +675,7 @@ void editor_find_current_word(ScintillaObject *sci, gint pos, gchar *word, size_
|
||||
|
||||
chunk[endword] = '\0';
|
||||
|
||||
g_strlcpy(word, chunk + startword, wordlen); //ensure null terminated
|
||||
g_strlcpy(word, chunk + startword, wordlen); // ensure null terminated
|
||||
g_free(chunk);
|
||||
}
|
||||
|
||||
|
@ -401,7 +401,7 @@ gboolean configuration_load()
|
||||
ui_prefs.sidebar_visible = utils_get_setting_boolean(config, PACKAGE, "sidebar_visible", TRUE);
|
||||
prefs.statusbar_visible = utils_get_setting_boolean(config, PACKAGE, "statusbar_visible", TRUE);
|
||||
ui_prefs.msgwindow_visible = utils_get_setting_boolean(config, PACKAGE, "msgwindow_visible", TRUE);
|
||||
editor_prefs.line_breaking = utils_get_setting_boolean(config, PACKAGE, "line_breaking", FALSE); //default is off for better performance
|
||||
editor_prefs.line_breaking = utils_get_setting_boolean(config, PACKAGE, "line_breaking", FALSE); // default is off for better performance
|
||||
editor_prefs.indent_mode = utils_get_setting_integer(config, PACKAGE, "indent_mode", INDENT_ADVANCED);
|
||||
editor_prefs.use_tab_to_indent = utils_get_setting_boolean(config, PACKAGE, "use_tab_to_indent", FALSE);
|
||||
editor_prefs.use_indicators = utils_get_setting_boolean(config, PACKAGE, "use_indicators", TRUE);
|
||||
|
Loading…
x
Reference in New Issue
Block a user