From d712d92e703e5f6b1282bd84eaeea9000fd5d76f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Timbert?= Date: Sat, 28 Jun 2008 22:16:06 +0000 Subject: [PATCH] Add some missing end of lines --- src/font.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/font.cpp b/src/font.cpp index b43f854ca54..1b96c67b1c6 100644 --- a/src/font.cpp +++ b/src/font.cpp @@ -829,7 +829,7 @@ surface floating_label::create_surface() surface foreground = font::render_text(text_, font_size_, colour_, 0); if(foreground == NULL) { - ERR_FT << "could not create floating label's text"; + ERR_FT << "could not create floating label's text" << std::endl; return NULL; } @@ -839,7 +839,7 @@ surface floating_label::create_surface() surface background = create_neutral_surface(foreground->w + border_*2, foreground->h + border_*2); if (background == NULL) { - ERR_FT << "could not create tooltip box"; + ERR_FT << "could not create tooltip box" << std::endl; surf_ = create_optimized_surface(foreground); return surf_; } @@ -867,7 +867,7 @@ surface floating_label::create_surface() background = adjust_surface_alpha(background, ftofxp(4.0), false); if (background == NULL) { - ERR_FT << "could not create floating label's shadow"; + ERR_FT << "could not create floating label's shadow" << std::endl; surf_ = create_optimized_surface(foreground); return surf_; }