- ccomponents: add missing slash to iconBasePath

This commit is contained in:
svenhoefer
2015-05-07 11:10:28 +02:00
parent 042ac904b3
commit e85f32848c
2 changed files with 3 additions and 3 deletions

View File

@@ -81,8 +81,8 @@ void CComponentsScrollBar::initVarSbForm(const int& count)
sb_segments_obj = NULL;
string ftype = ".png";
sb_up_icon = frameBuffer->getIconBasePath() + NEUTRINO_ICON_BUTTON_TOP + ftype;
sb_down_icon = frameBuffer->getIconBasePath() + NEUTRINO_ICON_BUTTON_DOWN + ftype;
sb_up_icon = frameBuffer->getIconBasePath() + "/" + NEUTRINO_ICON_BUTTON_TOP + ftype;
sb_down_icon = frameBuffer->getIconBasePath() + "/" + NEUTRINO_ICON_BUTTON_DOWN + ftype;
sb_segments_count = count;
sb_mark_id = 0;