diff options
author | Slávek Banko <[email protected]> | 2016-04-05 02:51:13 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2016-04-05 02:51:13 +0200 |
commit | 1e2161224bce28f05016a51e049137739ab77651 (patch) | |
tree | 75f881b1f77bb213e32d1a39ad5a37c7f032d634 | |
parent | 11e10d2361002498d94828b09602b0bb75ff3568 (diff) | |
download | tde-style-domino-1e2161224bce28f05016a51e049137739ab77651.tar.gz tde-style-domino-1e2161224bce28f05016a51e049137739ab77651.zip |
Removed an unwanted ";" to stop an empty if statement
[taken from Debian patches]
-rw-r--r-- | domino/domino.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/domino/domino.cpp b/domino/domino.cpp index 837d0af..09645d1 100644 --- a/domino/domino.cpp +++ b/domino/domino.cpp @@ -7776,7 +7776,7 @@ void DominoStyle::dominoDrawItem( QPainter *p, const QRect &r, p->setClipping(false); } - if(axi); + if(axi) XDestroyImage(axi); if(xi) XDestroyImage(xi); |