Remove unused private members
These members are in private classe, so we can safely remove them.
qpathclipper.cpp:762:9: error: private field 'm_point' is not used [-Werror,-Wunused-private-field]
qsimpledrag_p.h💯20: error: private field 'm_cursor_drop_action' is not used
etc.
Change-Id: I35ed486eb959c49bb971700500a66411308ee7bc
Reviewed-by: Konstantin Ritt <ritt.ks@gmail.com>
Reviewed-by: Samuel Rødal <samuel.rodal@digia.com>
Reviewed-by: Gunnar Sletta <gunnar.sletta@digia.com>
This commit is contained in:
parent
336eac0896
commit
c550a5d42c
@ -713,8 +713,7 @@ class QKdPointFinder
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
QKdPointFinder(int point, const QPathSegments &segments, QKdPointTree &tree)
|
QKdPointFinder(int point, const QPathSegments &segments, QKdPointTree &tree)
|
||||||
: m_point(point)
|
: m_result(-1)
|
||||||
, m_result(-1)
|
|
||||||
, m_segments(&segments)
|
, m_segments(&segments)
|
||||||
, m_tree(&tree)
|
, m_tree(&tree)
|
||||||
{
|
{
|
||||||
@ -759,7 +758,6 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
int m_point;
|
|
||||||
qreal pointComponents[2];
|
qreal pointComponents[2];
|
||||||
int m_result;
|
int m_result;
|
||||||
const QPathSegments *m_segments;
|
const QPathSegments *m_segments;
|
||||||
|
@ -120,7 +120,6 @@ public:
|
|||||||
private:
|
private:
|
||||||
QGLFramebufferObject* fbo;
|
QGLFramebufferObject* fbo;
|
||||||
QGLFormat fboFormat;
|
QGLFormat fboFormat;
|
||||||
bool wasBound;
|
|
||||||
bool reqAlpha;
|
bool reqAlpha;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -95,7 +95,7 @@ static QWindow* topLevelAt(const QPoint &pos)
|
|||||||
QBasicDrag::QBasicDrag() :
|
QBasicDrag::QBasicDrag() :
|
||||||
m_restoreCursor(false), m_eventLoop(0),
|
m_restoreCursor(false), m_eventLoop(0),
|
||||||
m_executed_drop_action(Qt::IgnoreAction), m_can_drop(false),
|
m_executed_drop_action(Qt::IgnoreAction), m_can_drop(false),
|
||||||
m_drag(0), m_drag_icon_window(0), m_cursor_drop_action(Qt::IgnoreAction)
|
m_drag(0), m_drag_icon_window(0)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -97,7 +97,6 @@ private:
|
|||||||
bool m_can_drop;
|
bool m_can_drop;
|
||||||
QDrag *m_drag;
|
QDrag *m_drag;
|
||||||
QShapedPixmapWindow *m_drag_icon_window;
|
QShapedPixmapWindow *m_drag_icon_window;
|
||||||
Qt::DropAction m_cursor_drop_action;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class QSimpleDrag : public QBasicDrag
|
class QSimpleDrag : public QBasicDrag
|
||||||
|
Loading…
Reference in New Issue
Block a user