From 417b167d437e0a2a9b61a2ffd7870060c88a751c Mon Sep 17 00:00:00 2001 From: thunder2 Date: Fri, 29 Oct 2010 12:35:10 +0000 Subject: [PATCH] Renamed QStatusLabel to StatusLabel, because it's no class from Qt. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3715 b45a01b8-16f6-495d-af2f-9b41ad6348cc --- retroshare-gui/src/gui/statusbar/hashingstatus.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/retroshare-gui/src/gui/statusbar/hashingstatus.cpp b/retroshare-gui/src/gui/statusbar/hashingstatus.cpp index 1b8b2a607..9ec4f148d 100644 --- a/retroshare-gui/src/gui/statusbar/hashingstatus.cpp +++ b/retroshare-gui/src/gui/statusbar/hashingstatus.cpp @@ -26,10 +26,10 @@ #include "gui/notifyqt.h" -class QStatusLabel : public QLabel +class StatusLabel : public QLabel { public: - QStatusLabel(QLayout *layout, QWidget *parent = NULL, Qt::WindowFlags f = 0) : QLabel(parent, f) + StatusLabel(QLayout *layout, QWidget *parent = NULL, Qt::WindowFlags f = 0) : QLabel(parent, f) { m_layout = layout; } @@ -53,7 +53,7 @@ HashingStatus::HashingStatus(QWidget *parent) hbox->setMargin(0); hbox->setSpacing(6); - statusHashing = new QStatusLabel(hbox, this); + statusHashing = new StatusLabel(hbox, this); hbox->addWidget(statusHashing); QSpacerItem *horizontalSpacer = new QSpacerItem(1000, 0, QSizePolicy::Expanding, QSizePolicy::Minimum);