Navigation Menu

Skip to content

Commit

Permalink
Merge branch 'master' into 'master'
Browse files Browse the repository at this point in the history
Fix signal signature

Missed this on commit 9ff2af5

@dcaliste

See merge request !18
  • Loading branch information
pvuorela committed Dec 5, 2016
2 parents a18e3f3 + 2a15822 commit 0ddd69f
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 0ddd69f

Please sign in to comment.