forked from qt-creator/qt-creator
TextEditor: Make some virtual protected slots private
Not needed otherwise Change-Id: Ie178ae7c8a5216e351360b45d9c75c8b32dd2a54 Reviewed-by: Christian Stenger <christian.stenger@digia.com>
This commit is contained in:
@@ -588,16 +588,16 @@ protected:
|
|||||||
|
|
||||||
|
|
||||||
protected slots:
|
protected slots:
|
||||||
virtual void slotUpdateExtraArea();
|
virtual void slotCursorPositionChanged(); // Used in VcsBase
|
||||||
virtual void slotUpdateExtraAreaWidth();
|
virtual void slotCodeStyleSettingsChanged(const QVariant &); // Used in CppEditor
|
||||||
virtual void slotUpdateRequest(const QRect &r, int dy);
|
|
||||||
virtual void slotCursorPositionChanged();
|
|
||||||
virtual void slotUpdateBlockNotify(const QTextBlock &);
|
|
||||||
virtual void slotCodeStyleSettingsChanged(const QVariant &);
|
|
||||||
|
|
||||||
void configureMimeType();
|
void configureMimeType();
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
|
void slotUpdateExtraArea();
|
||||||
|
void slotUpdateExtraAreaWidth();
|
||||||
|
void slotUpdateRequest(const QRect &r, int dy);
|
||||||
|
void slotUpdateBlockNotify(const QTextBlock &);
|
||||||
void updateTabStops();
|
void updateTabStops();
|
||||||
void applyFontSettingsDelayed();
|
void applyFontSettingsDelayed();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user