From: srit Date: Thu, 16 Sep 2010 15:53:54 +0000 (+0000) Subject: Fusion window / level was rounded to int for no good reason X-Git-Tag: v1.2.0~383 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=d58e4dd2e0fcfcdfb9357181ae7c60a714893990;p=clitk.git Fusion window / level was rounded to int for no good reason --- diff --git a/vv/vvSlicerManager.h b/vv/vvSlicerManager.h index 5bbc3c7..785c257 100644 --- a/vv/vvSlicerManager.h +++ b/vv/vvSlicerManager.h @@ -123,10 +123,10 @@ class vvSlicerManager : public QObject { void SetFusionColorMap(int colorMap) { mFusionColorMap = colorMap; } - void SetFusionWindow(int window) { + void SetFusionWindow(double window) { mFusionWindow = window; } - void SetFusionLevel(int level) { + void SetFusionLevel(double level) { mFusionLevel = level; }