diff options
| author | Jon Ander Peñalba <jonan88@gmail.com> | 2010-09-10 12:50:00 +0200 | 
|---|---|---|
| committer | Jon Ander Peñalba <jonan88@gmail.com> | 2010-09-10 12:50:00 +0200 | 
| commit | ef0c5630983853473e1e3c97a4c68baa1d487e6e (patch) | |
| tree | 14126951d417ecea15ab5d62445a1fd54644967e /src/urlbar | |
| parent | Minor bug introduced in previous commit fixed (diff) | |
| download | rekonq-ef0c5630983853473e1e3c97a4c68baa1d487e6e.tar.xz | |
Fixes a string change (this commit should be reverted after v0.6)
Diffstat (limited to 'src/urlbar')
| -rw-r--r-- | src/urlbar/bookmarkwidget.cpp | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/src/urlbar/bookmarkwidget.cpp b/src/urlbar/bookmarkwidget.cpp index 4569bc27..409f1468 100644 --- a/src/urlbar/bookmarkwidget.cpp +++ b/src/urlbar/bookmarkwidget.cpp @@ -64,7 +64,10 @@ BookmarkWidget::BookmarkWidget(const KBookmark &bookmark, QWidget *parent)      // Title      QVBoxLayout *vLayout = new QVBoxLayout(this);      QLabel *bookmarkInfo = new QLabel(this); -    bookmarkInfo->setText(i18n("<h4>Edit this Bookmark</h4>")); +    bookmarkInfo->setText(i18n("Edit this Bookmark")); +    QFont font; +    font.setPointSize(font.pointSize() + 2); +    bookmarkInfo->setFont(font);      bookmarkInfo->setAlignment(Qt::AlignCenter);      vLayout->addWidget(bookmarkInfo); | 
