diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-09-03 08:29:11 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-09-03 08:29:11 +0000 |
commit | 789dc93cc8ad92d377f51d9eabf4ddbddc4588b2 (patch) | |
tree | f48de61dedcc57545962ede6bd66b87dfd68abee /x11-themes | |
parent | 03e0efcbea8cd756634eeacb93906739ae55591d (diff) | |
download | ports-789dc93cc8ad92d377f51d9eabf4ddbddc4588b2.tar.gz ports-789dc93cc8ad92d377f51d9eabf4ddbddc4588b2.zip |
Notes
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/baghira/files/patch-baghira.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/x11-themes/baghira/files/patch-baghira.cpp b/x11-themes/baghira/files/patch-baghira.cpp new file mode 100644 index 000000000000..f553ce122acb --- /dev/null +++ b/x11-themes/baghira/files/patch-baghira.cpp @@ -0,0 +1,11 @@ +--- style/baghira.cpp.orig Tue Aug 31 00:07:49 2004 ++++ style/baghira.cpp Thu Sep 2 12:57:28 2004 +@@ -1643,7 +1643,7 @@ + const QPushButton *btn = ( const QPushButton* ) widget; + int x, y, w, h; + r.rect( &x, &y, &w, &h ); +- bool highlighted = btn->isOn() || btn->isDown() || btn->hasFocus() || btn == highlightWidget; ++ bool highlighted = btn->isOn() || btn->isDown() || btn->hasFocus() || btn == ( const QPushButton* ) highlightWidget; + + if ( btn->isOn() || btn->isDown() ) { + flags |= Style_Sunken; |