Optimize BaseTextMark

Instead of each BaseTextMark being a QObject and being connected
to editorOpened, centralize that and distribute the signal
to only the BaseTextMarks that need it.

Change-Id: I3f2783c34a25d78aa335418236850436028bfdf3
Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
This commit is contained in:
Daniel Teske
2012-02-08 17:21:12 +01:00
parent cf4c131541
commit b267027c9e
14 changed files with 106 additions and 90 deletions

View File

@@ -38,6 +38,11 @@
using namespace TextEditor;
ITextMark::~ITextMark()
{
}
void ITextMark::paint(QPainter *painter, const QRect &rect) const
{
m_icon.paint(painter, rect, Qt::AlignCenter);