From 52f7df55a0b5c96cabf161b50a9f4f1a4a90e02a Mon Sep 17 00:00:00 2001 From: Paul Harrison Date: Sun, 13 Feb 2011 11:12:07 +0000 Subject: [PATCH] Remove some no longer needed code now we only support Qt4.5 or later. (cherry picked from commit 548434c2944dcca14abfce4734fb8d09bc3957ae) --- mythtv/libs/libmythui/mythuiwebbrowser.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/mythtv/libs/libmythui/mythuiwebbrowser.cpp b/mythtv/libs/libmythui/mythuiwebbrowser.cpp index c491e23909b..5ce103fc27f 100644 --- a/mythtv/libs/libmythui/mythuiwebbrowser.cpp +++ b/mythtv/libs/libmythui/mythuiwebbrowser.cpp @@ -3,7 +3,7 @@ * \author Paul Harrison * \brief Provide a web browser widget. * - * This requires qt4.4.0 or later to function properly. + * This requires qt4.5.0 or later to function properly. * */ @@ -458,11 +458,7 @@ void MythUIWebBrowser::SetZoom(float zoom) return; m_zoom = zoom; -#if QT_VERSION >= 0x040500 m_browser->setZoomFactor(m_zoom); -#else - m_browser->setTextSizeMultiplier(m_zoom); -#endif UpdateBuffer(); }