Fix indentation from tabs to spaces in a few lines I accidentally wrote before fixing my editors settings

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45950 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mart Raudsepp
2007-05-11 05:39:55 +00:00
parent b4e0dd391c
commit beed4c4b53

View File

@@ -162,12 +162,12 @@ static void wxGtkTextApplyTagsFromAttr(GtkWidget *text,
// gtk+ doesn't support justify before gtk+-2.11.0 with pango-1.17 being available
// (but if new enough pango isn't available it's a mere gtk warning)
#if GTK_CHECK_VERSION(2,11,0)
case wxTEXT_ALIGNMENT_JUSTIFIED:
case wxTEXT_ALIGNMENT_JUSTIFIED:
if (!gtk_check_version(2,11,0))
align = GTK_JUSTIFY_FILL;
align = GTK_JUSTIFY_FILL;
else
align = GTK_JUSTIFY_LEFT;
break;
break;
#endif
}