From c81051a46fcf91497d24e9977758ca1f85867a80 Mon Sep 17 00:00:00 2001 From: Hugo Pereira Da Costa Date: Thu, 30 Dec 2010 11:21:25 +0000 Subject: [PATCH] removed default Firefox|Thunderbird exception, since it conflicts with the "follow style hint" setting for decoration background. svn path=/trunk/KDE/kdebase/workspace/; revision=1210278 --- clients/oxygen/oxygenexceptionlist.cpp | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/clients/oxygen/oxygenexceptionlist.cpp b/clients/oxygen/oxygenexceptionlist.cpp index f73621f393..652dda0c79 100644 --- a/clients/oxygen/oxygenexceptionlist.cpp +++ b/clients/oxygen/oxygenexceptionlist.cpp @@ -78,22 +78,7 @@ namespace Oxygen //______________________________________________________________ ExceptionList ExceptionList::defaultList( void ) - { - - ExceptionList out; - - // default exception that covers most commonly used gtk based applications - Exception exception; - exception.setType( Exception::WindowClassName ); - exception.regExp().setPattern( "(Firefox)|(Thunderbird)|(Gimp)" ); - exception.setBlendColor( Exception::NoBlending ); - exception.setMask( Exception::BlendColor ); - exception.setEnabled( true ); - - out.push_back( exception ); - return out; - - } + { return ExceptionList(); } //_______________________________________________________________________ QString ExceptionList::exceptionGroupName( int index )