mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-24 14:23:36 -05:00
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
This commit is contained in:
parent
fa9451c072
commit
417b167d43
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user