make qmljsDebugargumentsstring() and forceOpen() const
Guessing the const specifier was accidentally forgotten Signed-off-by: Peng Wenhao <pengwenhao@uniontech.com> Change-Id: I611acc8d67d3eb101df9c8d816dd5779241a79f8 Reviewed-by: Kai Koehne <kai.koehne@qt.io>bb10
parent
b0680cf5b1
commit
faa6f19b2a
|
|
@ -198,7 +198,7 @@ public:
|
|||
|
||||
void processCommandLineArguments();
|
||||
QString qmljs_debug_arguments; // a string containing arguments for js/qml debugging.
|
||||
inline QString qmljsDebugArgumentsString() { return qmljs_debug_arguments; }
|
||||
inline QString qmljsDebugArgumentsString() const { return qmljs_debug_arguments; }
|
||||
|
||||
#ifdef QT_NO_QOBJECT
|
||||
QCoreApplication *q_ptr;
|
||||
|
|
|
|||
|
|
@ -228,7 +228,7 @@ public:
|
|||
qfixed miterLimit() const { return m_miterLimit; }
|
||||
|
||||
void setForceOpen(bool state) { m_forceOpen = state; }
|
||||
bool forceOpen() { return m_forceOpen; }
|
||||
bool forceOpen() const { return m_forceOpen; }
|
||||
|
||||
void joinPoints(qfixed x, qfixed y, const QLineF &nextLine, LineJoinMode join);
|
||||
inline void emitMoveTo(qfixed x, qfixed y);
|
||||
|
|
|
|||
Loading…
Reference in New Issue