Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(540)

Unified Diff: chrome/browser/bookmarks/bookmark_table_model.cc

Issue 20038: Review request: fix 7324 and 7326: missing icon and wrong path in "download location" (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/views/options/advanced_contents_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/bookmarks/bookmark_table_model.cc
===================================================================
--- chrome/browser/bookmarks/bookmark_table_model.cc (revision 10107)
+++ chrome/browser/bookmarks/bookmark_table_model.cc (working copy)
@@ -363,7 +363,7 @@
// (in which, "CBA" and "FED" stand for folder names in Hebrew, and "FED" is
// a subfolder of "CBA") will be displayed as "FED/CBA".
if (l10n_util::GetTextDirection() == l10n_util::RIGHT_TO_LEFT) {
- path->append(l10n_util::kLeftToRightMark);
+ path->push_back(static_cast<wchar_t>(l10n_util::kLeftToRightMark));
}
path->append(node->GetTitle());
}
« no previous file with comments | « no previous file | chrome/browser/views/options/advanced_contents_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698