diff --git a/livesupport/modules/widgets/src/ZebraTreeView.cxx b/livesupport/modules/widgets/src/ZebraTreeView.cxx index 28c3c82e0..52f0546ee 100644 --- a/livesupport/modules/widgets/src/ZebraTreeView.cxx +++ b/livesupport/modules/widgets/src/ZebraTreeView.cxx @@ -22,7 +22,7 @@ Author : $Author: fgerlits $ - Version : $Revision: 1.15 $ + Version : $Revision: 1.16 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/src/ZebraTreeView.cxx,v $ ------------------------------------------------------------------------------*/ @@ -256,7 +256,7 @@ ZebraTreeView :: lineNumberCellDataFunction( cell->property_cell_background_gdk() = Colors::getColor(colorName); Glib::ustring numberString; - numberString.append(""); + numberString.append(""); std::stringstream numberStr; numberStr << (rowNumber + offset); numberString.append(numberStr.str()); diff --git a/livesupport/products/gLiveSupport/src/LiveModeWindow.cxx b/livesupport/products/gLiveSupport/src/LiveModeWindow.cxx index 0526f3f1f..76211e1c2 100644 --- a/livesupport/products/gLiveSupport/src/LiveModeWindow.cxx +++ b/livesupport/products/gLiveSupport/src/LiveModeWindow.cxx @@ -22,7 +22,7 @@ Author : $Author: fgerlits $ - Version : $Revision: 1.15 $ + Version : $Revision: 1.16 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/LiveModeWindow.cxx,v $ ------------------------------------------------------------------------------*/ @@ -193,7 +193,8 @@ LiveModeWindow :: addItem(Ptr::Ref playable) throw () Ptr::Ref infoString(new Glib::ustring); - infoString->append(""); + infoString->append(""); infoString->append(Glib::Markup::escape_text(*playable->getTitle())); infoString->append(""); @@ -202,7 +203,8 @@ LiveModeWindow :: addItem(Ptr::Ref playable) throw () Ptr::Ref creator = playable->getMetadata("dc:creator"); if (creator) { - infoString->append("\n"); + infoString->append("\n"); infoString->append(Glib::Markup::escape_text(*creator)); infoString->append(""); } @@ -210,12 +212,13 @@ LiveModeWindow :: addItem(Ptr::Ref playable) throw () Ptr::Ref album = playable->getMetadata("dc:source"); if (album) { - infoString->append("\n"); + infoString->append("\n"); infoString->append(Glib::Markup::escape_text(*album)); infoString->append(""); } - infoString->append("\n" + infoString->append("\n" "duration: "); infoString->append(to_simple_string(*playable->getPlaylength())); infoString->append(""); diff --git a/livesupport/products/gLiveSupport/src/MasterPanelWindow.cxx b/livesupport/products/gLiveSupport/src/MasterPanelWindow.cxx index c9574a6dc..bffcd5297 100644 --- a/livesupport/products/gLiveSupport/src/MasterPanelWindow.cxx +++ b/livesupport/products/gLiveSupport/src/MasterPanelWindow.cxx @@ -22,7 +22,7 @@ Author : $Author: fgerlits $ - Version : $Revision: 1.33 $ + Version : $Revision: 1.34 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/MasterPanelWindow.cxx,v $ ------------------------------------------------------------------------------*/ @@ -79,7 +79,7 @@ MasterPanelWindow :: MasterPanelWindow (Ptr::Ref gLiveSupport, Pango::Attribute fontDescriptionAttribute = Pango::Attribute::create_attr_font_desc( Pango::FontDescription( - "Bitstream Vera Bold 24")); + "Bitstream Vera Sans Bold 24")); fontDescriptionAttribute.set_start_index(0); fontDescriptionAttribute.set_end_index(10); Pango::AttrList timeWidgetAttributes; diff --git a/livesupport/products/gLiveSupport/src/NowPlaying.cxx b/livesupport/products/gLiveSupport/src/NowPlaying.cxx index c3c4629c4..595517bc4 100644 --- a/livesupport/products/gLiveSupport/src/NowPlaying.cxx +++ b/livesupport/products/gLiveSupport/src/NowPlaying.cxx @@ -22,7 +22,7 @@ Author : $Author: fgerlits $ - Version : $Revision: 1.3 $ + Version : $Revision: 1.4 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/NowPlaying.cxx,v $ ------------------------------------------------------------------------------*/ @@ -107,7 +107,8 @@ NowPlaying :: setPlayable(Ptr::Ref playable) throw () Ptr::Ref infoString(new Glib::ustring); - infoString->append(""); + infoString->append(""); infoString->append(Glib::Markup::escape_text(*playable->getTitle())); infoString->append(" "); @@ -116,7 +117,8 @@ NowPlaying :: setPlayable(Ptr::Ref playable) throw () Ptr::Ref creator = playable->getMetadata("dc:creator"); if (creator) { - infoString->append(""); + infoString->append(""); infoString->append(Glib::Markup::escape_text(*creator)); infoString->append(""); }