Skip to content

Commit

Permalink
- Fixed encoding of tooltips
Browse files Browse the repository at this point in the history
- Version 2.42.4
  • Loading branch information
tgoettlicher committed Jan 17, 2013
1 parent ccce71d commit daed205
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu Jan 17 10:49:30 CET 2013 - tgoettlicher@suse.de

- Fixed encoding of tooltips
- Version 2.42.4

-------------------------------------------------------------------
Wed Dec 12 10:03:10 CET 2012 - ma@suse.de

Expand Down
2 changes: 1 addition & 1 deletion VERSION.cmake
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
SET( VERSION_MAJOR "2" )
SET( VERSION_MINOR "42" )
SET( VERSION_PATCH "3" )
SET( VERSION_PATCH "4" )
SET( VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}" )

##### This is need for the libyui core, ONLY.
Expand Down
4 changes: 2 additions & 2 deletions src/YQPkgRepoList.cc
Original file line number Diff line number Diff line change
Expand Up @@ -219,12 +219,12 @@ YQPkgRepoListItem::YQPkgRepoListItem( YQPkgRepoList * repoList,
}

std::string infoToolTip;
infoToolTip += ("<b>" + repo.info().name() + "</b>");
infoToolTip += ("<b>" + fromUTF8(repo.info().name()) + "</b>");

ZyppProduct product = singleProduct( _zyppRepo );
if ( product )
{
infoToolTip += ("<p>" + product->summary() + "</p>");
infoToolTip += ("<p>" + fromUTF8(product->summary()) + "</p>");
}

if ( ! repo.info().baseUrlsEmpty() )
Expand Down

0 comments on commit daed205

Please sign in to comment.