summaryrefslogtreecommitdiffstats
path: root/konsole/konsole/session.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'konsole/konsole/session.cpp')
-rw-r--r--konsole/konsole/session.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/konsole/konsole/session.cpp b/konsole/konsole/session.cpp
index 17692f51c..8ecf469af 100644
--- a/konsole/konsole/session.cpp
+++ b/konsole/konsole/session.cpp
@@ -283,8 +283,8 @@ void TESession::notifySessionState(int state)
void TESession::onContentSizeChange(int height, int width)
{
// ensure that image is at least one line high by one column wide
- const int columns = QMAX( width/font_w , 1 );
- const int lines = QMAX( height/font_h , 1 );
+ const int columns = TQMAX( width/font_w , 1 );
+ const int lines = TQMAX( height/font_h , 1 );
em->onImageSizeChange( lines , columns );
sh->setSize( lines , columns );