diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-10-13 15:41:23 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-10-13 15:41:23 +0100 |
commit | d863b3d5cb7ce6f21241e89dc01de797b4d0c3c5 (patch) | |
tree | 319c568ca84caeae735a27397fa4885e4bfed793 /vcl/unx/gtk/a11y/atktextattributes.cxx | |
parent | 778b755a3fe25b887e00b93daa5d169072a195fe (diff) |
tweaks for AIX
Diffstat (limited to 'vcl/unx/gtk/a11y/atktextattributes.cxx')
-rw-r--r-- | vcl/unx/gtk/a11y/atktextattributes.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/gtk/a11y/atktextattributes.cxx b/vcl/unx/gtk/a11y/atktextattributes.cxx index 04498810597f..6460dea679f9 100644 --- a/vcl/unx/gtk/a11y/atktextattributes.cxx +++ b/vcl/unx/gtk/a11y/atktextattributes.cxx @@ -1092,7 +1092,7 @@ TabStopList2String( const uno::Any& rAny, bool default_tabs ) if( ret ) { gchar * old_tab_str = ret; - ret = g_strconcat(old_tab_str, " ", tab_str, NULL /* terminated */); + ret = g_strconcat(old_tab_str, " ", tab_str, (const char*)NULL); g_free( old_tab_str ); } else |