[kstyle] Drop QStyleOptionFrameV3 in Qt 5 style plugin

Reviewers: #breeze, hpereiradacosta

Reviewed By: hpereiradacosta

Subscribers: plasma-devel

Tags: #plasma

Differential Revision: https://phabricator.kde.org/D12261
wilder-5.17
Vlad Zagorodniy 8 years ago
parent 6c79210f31
commit abc4464fec
  1. 4
      kstyle/breezestyle.cpp

@ -5236,7 +5236,11 @@ namespace Breeze
{
// cast option and check
#if BREEZE_USE_KDE4
const auto frameOpt = qstyleoption_cast<const QStyleOptionFrameV3*>( option );
#else
const auto frameOpt = qstyleoption_cast<const QStyleOptionFrame*>( option );
#endif
if( !frameOpt ) return false;
switch( frameOpt->frameShape )

Loading…
Cancel
Save