Skip to content

Commit

Permalink
Fix signature of overridden method. Fixes: https://bugs.launchpad.net…
Browse files Browse the repository at this point in the history
…/bugs/1158840.

Approved by PS Jenkins bot, Nick Dedekind.

(bzr r3008.2.108)
  • Loading branch information
mhr3 authored and Tarmac committed Apr 15, 2013
2 parents f7b3648 + 4024c0d commit 4af599f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dash/ResultRendererHorizontalTile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ nux::BaseTexture* ResultRendererHorizontalTile::DrawNormal(std::string const& te
return texture_from_cairo_graphics(cairo_graphics);
}

void ResultRendererHorizontalTile::LoadText(Result& row)
void ResultRendererHorizontalTile::LoadText(Result const& row)
{
std::stringstream final_text;
char *name = g_markup_escape_text(row.name().c_str() , -1);
Expand Down
2 changes: 1 addition & 1 deletion dash/ResultRendererHorizontalTile.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class ResultRendererHorizontalTile : public ResultRendererTile
virtual nux::NBitmapData* GetDndImage(Result const& row) const;

protected:
virtual void LoadText(Result& row);
virtual void LoadText(Result const& row);

private:
nux::BaseTexture* DrawHighlight(std::string const& texid,
Expand Down

0 comments on commit 4af599f

Please sign in to comment.