From: Mart Raudsepp Date: Fri, 11 May 2007 05:39:55 +0000 (+0000) Subject: Fix indentation from tabs to spaces in a few lines I accidentally wrote before fixing... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/beed4c4b53365c8b4841e913e371184b805a42c2?ds=inline 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 --- diff --git a/src/gtk/textctrl.cpp b/src/gtk/textctrl.cpp index 56d2d05c1f..d21be8967f 100644 --- a/src/gtk/textctrl.cpp +++ b/src/gtk/textctrl.cpp @@ -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 }