diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2011-07-19 22:07:50 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-07-19 22:07:50 +0200 |
commit | ddc03229eb183a66f76648095c4062c71b048061 (patch) | |
tree | 2f97477e8ac5c7d16161369108e33ce47efc2fcd /src | |
parent | fixuifiles (diff) | |
download | rekonq-ddc03229eb183a66f76648095c4062c71b048061.tar.xz |
fix the fix
PS:
ints are: 1,2,3,4... or 0,-1,-2...
numbers with comma (or dot) are real.
We call them float. Or double..
PPS:
I'm maths graduated :D
Diffstat (limited to 'src')
-rw-r--r-- | src/tabpreviewpopup.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabpreviewpopup.cpp b/src/tabpreviewpopup.cpp index bb438aae..8e7a458f 100644 --- a/src/tabpreviewpopup.cpp +++ b/src/tabpreviewpopup.cpp @@ -43,7 +43,7 @@ // static static const int borderRadius = 5; static const int borderSpacing = 2; -static const int transparency = 0.90; +static const double transparency = 0.90; TabPreviewPopup::TabPreviewPopup(WebTab* tab, QWidget* parent) |