diff options
Diffstat (limited to 'src/widgets/ntqtextedit.h')
-rw-r--r-- | src/widgets/ntqtextedit.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/widgets/ntqtextedit.h b/src/widgets/ntqtextedit.h index 3cd475c94..322fb4e00 100644 --- a/src/widgets/ntqtextedit.h +++ b/src/widgets/ntqtextedit.h @@ -271,7 +271,7 @@ public: TQSize sizeHint() const; - bool isReadOnly() const { return readonly; } + bool isReadOnly() const { return readOnly; } void getCursorPosition( int *parag, int *index ) const; @@ -579,11 +579,11 @@ private: bool mousePressed : 1; bool cursorVisible : 1; bool blinkCursorVisible : 1; - bool readOnly : 1; + bool noop: 1; //< Removed; keep as padding for binary compat or reuse if needed bool modified : 1; bool mightStartDrag : 1; bool inDnD : 1; - bool readonly : 1; + bool readOnly : 1; bool undoEnabled : 1; bool overWrite : 1; |