diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2011-07-23 18:29:15 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-07-23 18:39:24 +0200 |
commit | 85f454faabef5453c08eb5493d0afc63e23f650b (patch) | |
tree | fd618388294beb76f58047b3115522e185e813ab /src/urlbar/bookmarkwidget.cpp | |
parent | Use KLocale::formatByteSize instead of a i18n call (diff) | |
download | rekonq-85f454faabef5453c08eb5493d0afc63e23f650b.tar.xz |
SSL fixes
I hope I addressed here a number of fixes in my first implementation:
- working hasSSLValid() function (checking cert validity and chain errors)
- escaping certificate strings
- typos (Sha256/Md5, supportedCipherBits/usedCipherBits)
- encryption check (at least I hope so)
CCMAIL: rich@kde.org
Diffstat (limited to 'src/urlbar/bookmarkwidget.cpp')
-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 0cacd41d..eb2ac08e 100644 --- a/src/urlbar/bookmarkwidget.cpp +++ b/src/urlbar/bookmarkwidget.cpp @@ -61,7 +61,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 f = bookmarkInfo->font(); + f.setBold(true); + bookmarkInfo->setFont(f); bookmarkInfo->setAlignment(Qt::AlignCenter); vLayout->addWidget(bookmarkInfo); |