Skip to content
Snippets Groups Projects
Commit 39ceca43 authored by Nick Schermer's avatar Nick Schermer
Browse files

* plugins/thunar-sbr/thunar-sbr-case-renamer.c: Apply patch from

	  Mathias Brodala to make the first character after a paranthesis
	  uppercase. Bug #3559.

(Old svn revision: 28933)
parent 432aee39
No related branches found
No related tags found
No related merge requests found
2008-11-27 Nick Schermer <nick@xfce.org>
* plugins/thunar-sbr/thunar-sbr-case-renamer.c: Apply patch from
Mathias Brodala to make the first character after a paranthesis
uppercase. Bug #3559.
2008-11-27 Nick Schermer <nick@xfce.org>
* plugins/thunar-uca/thunar-uca-chooser.c: Open a question dialog
......
......@@ -204,7 +204,7 @@ tscr_utf8_strcamel (const gchar *text)
{
upper = TRUE;
}
else if (upper)
else if (upper && g_unichar_isalpha (c))
{
c = g_unichar_toupper (c);
upper = FALSE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment