Use a macro that works to get the current DC. Fixes #613
Signed-off-by: Miika Turkia <[email protected]> --- qt-ui/profile/profilewidget2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt-ui/profile/profilewidget2.cpp b/qt-ui/profile/profilewidget2.cpp index b0f2216..dfe514f 100644 --- a/qt-ui/profile/profilewidget2.cpp +++ b/qt-ui/profile/profilewidget2.cpp @@ -1042,7 +1042,7 @@ void ProfileWidget2::changeGas() int seconds = timeAxis->valueAt(scenePos); validate_gas(gas.toUtf8().constData(), &gasmix); - add_gas_switch_event(&displayed_dive, get_dive_dc(&displayed_dive, diveComputer), seconds, get_gasidx(&displayed_dive, &gasmix)); + add_gas_switch_event(&displayed_dive, current_dc, seconds, get_gasidx(&displayed_dive, &gasmix)); // this means we potentially have a new tank that is being used and needs to be shown fixup_dive(&displayed_dive); -- 1.9.1 _______________________________________________ subsurface mailing list [email protected] http://lists.hohndel.org/cgi-bin/mailman/listinfo/subsurface
