Skip to content

Commit

Permalink
Remove some no longer needed code now we only support Qt4.5 or later.
Browse files Browse the repository at this point in the history
(cherry picked from commit 548434c)
  • Loading branch information
Paul Harrison committed Feb 13, 2011
1 parent 809ec68 commit 52f7df5
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions mythtv/libs/libmythui/mythuiwebbrowser.cpp
Expand Up @@ -3,7 +3,7 @@
* \author Paul Harrison <mythtv@dsl.pipex.com>
* \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.
*
*/

Expand Down Expand Up @@ -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();
}

Expand Down

0 comments on commit 52f7df5

Please sign in to comment.