Skip to content

Commit

Permalink
Fix signal signature
Browse files Browse the repository at this point in the history
Missed this on commit 9ff2af5
  • Loading branch information
pvuorela committed Dec 2, 2016
1 parent 76fa166 commit 2a15822
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion textrender.cpp
Expand Up @@ -85,7 +85,7 @@ TextRender::TextRender(QQuickItem *parent) :
Q_ASSERT(sTerm);
connect(sTerm, SIGNAL(displayBufferChanged()), this, SLOT(redraw()));
connect(sTerm, SIGNAL(cursorPosChanged(QPoint)), this, SLOT(redraw()));
connect(sTerm, SIGNAL(termSizeChanged(QSize)), this, SLOT(redraw()));
connect(sTerm, SIGNAL(termSizeChanged(int,int)), this, SLOT(redraw()));
connect(sTerm, SIGNAL(selectionChanged()), this, SLOT(redraw()));
connect(sTerm, SIGNAL(scrollBackBufferAdjusted(bool)), this, SLOT(handleScrollBack(bool)));
updateTermSize();
Expand Down

0 comments on commit 2a15822

Please sign in to comment.