summaryrefslogtreecommitdiffstats
path: root/arts/kde
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2013-11-28 13:28:01 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2013-11-28 13:28:01 -0600
commit72849e2a6f973af3eeaa573a66635e37cc427bb0 (patch)
tree2d3beea645819ba70a32c19a092a874f4e89c399 /arts/kde
parentb46a7c35c167304acc48675b979ca8b32bc3d293 (diff)
downloadtdelibs-72849e2a6f973af3eeaa573a66635e37cc427bb0.tar.gz
tdelibs-72849e2a6f973af3eeaa573a66635e37cc427bb0.zip
Fix remnant QMIN/QMAX to TQMIN/TQMAX.
Diffstat (limited to 'arts/kde')
-rw-r--r--arts/kde/kvideowidget.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/arts/kde/kvideowidget.cpp b/arts/kde/kvideowidget.cpp
index c03a18c21..f3a8c9030 100644
--- a/arts/kde/kvideowidget.cpp
+++ b/arts/kde/kvideowidget.cpp
@@ -321,14 +321,14 @@ void KVideoWidget::resizeEvent( TQResizeEvent *event )
if (width() > minimumWidth() || height() > minimumHeight())
{
- if (width() == QMAX( (videoWidth / 2), minimumWidth() ) &&
- height() == QMAX( (videoHeight / 2), minimumHeight() ))
+ if (width() == TQMAX( (videoWidth / 2), minimumWidth() ) &&
+ height() == TQMAX( (videoHeight / 2), minimumHeight() ))
((TDEToggleAction *)action( "half_size" ))->setChecked( true );
- else if (width() == QMAX( videoWidth, minimumWidth() ) &&
- height() == QMAX( videoHeight, minimumHeight() ))
+ else if (width() == TQMAX( videoWidth, minimumWidth() ) &&
+ height() == TQMAX( videoHeight, minimumHeight() ))
((TDEToggleAction *)action( "normal_size" ))->setChecked( true );
- else if (width() == QMAX( (2 * videoWidth), minimumWidth() ) &&
- height() == QMAX( (2 * videoHeight), minimumHeight() ))
+ else if (width() == TQMAX( (2 * videoWidth), minimumWidth() ) &&
+ height() == TQMAX( (2 * videoHeight), minimumHeight() ))
((TDEToggleAction *)action( "double_size" ))->setChecked( true );
else
{