diff options
author | Rene Engelhard <rene@debian.org> | 2012-04-23 22:07:20 +0200 |
---|---|---|
committer | Rene Engelhard <rene@debian.org> | 2012-04-23 22:07:20 +0200 |
commit | b97f109cb62de8f005a7e2fdc95c92f94d120676 (patch) | |
tree | b8110ddf6c42bb1ff702564e5cd84ae4a3e70c25 /vcl | |
parent | 7f5be85719985ce54ff65b88aaa420ed5b2e7a9b (diff) |
fix gtk3salnativewidgets-gtk build with gcc 4.4
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/unx/gtk3/gdi/gtk3salnativewidgets-gtk.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/unx/gtk3/gdi/gtk3salnativewidgets-gtk.cxx b/vcl/unx/gtk3/gdi/gtk3salnativewidgets-gtk.cxx index aaa4bd7f459f..6bd22809e0ae 100644 --- a/vcl/unx/gtk3/gdi/gtk3salnativewidgets-gtk.cxx +++ b/vcl/unx/gtk3/gdi/gtk3salnativewidgets-gtk.cxx @@ -622,7 +622,7 @@ void GtkSalGraphics::PaintSpinButton(GtkStyleContext *context, { if ( !pSpinVal ) { - std::fprintf( stderr, "Tried to draw CTRL_SPINBUTTONS, but the SpinButtons data structure didn't exist!\n" ); + fprintf( stderr, "Tried to draw CTRL_SPINBUTTONS, but the SpinButtons data structure didn't exist!\n" ); return; } areaRect = pSpinVal->maUpperRect; @@ -1335,10 +1335,10 @@ void GtkSalGraphics::updateSettings( AllSettings& rSettings ) } aInfo.m_eWidth = WIDTH_ULTRA_CONDENSED; - std::fprintf( stderr, "font name BEFORE system match: \"%s\"\n", aFamily.getStr() ); + fprintf( stderr, "font name BEFORE system match: \"%s\"\n", aFamily.getStr() ); // match font to e.g. resolve "Sans" psp::PrintFontManager::get().matchFont( aInfo, rSettings.GetUILocale() ); - std::fprintf( stderr, "font match %s, name AFTER: \"%s\"\n", + fprintf( stderr, "font match %s, name AFTER: \"%s\"\n", aInfo.m_nID != 0 ? "succeeded" : "failed", rtl::OUStringToOString( aInfo.m_aStyleName, RTL_TEXTENCODING_ISO_8859_1 ).getStr() ); @@ -1447,7 +1447,7 @@ void GtkSalGraphics::updateSettings( AllSettings& rSettings ) gchar* pThemeName = NULL; g_object_get( pSettings, "gtk-theme-name", &pThemeName, (char *)NULL ); #if OSL_DEBUG_LEVEL > 1 - std::fprintf( stderr, "Theme name is \"%s\"\n", pThemeName ); + fprintf( stderr, "Theme name is \"%s\"\n", pThemeName ); #endif |