aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2010-09-17 21:30:35 -0500
committerDenis Kenzior <denkenz@gmail.com>2010-09-17 21:30:35 -0500
commit8e3dbf822add53353b10a3c94d767758271ee5ed (patch)
tree9976f49b5586cdddf0bb9f33678d4a09d1d20da3
parentd373d16608229c4bbcd4257830ee8ec19e398aca (diff)
downloadphonesim-8e3dbf822add53353b10a3c94d767758271ee5ed.tar.gz
callmanager: Cleanup minor coding style violation
-rw-r--r--src/callmanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callmanager.cpp b/src/callmanager.cpp
index 06f426d..dddc5ae 100644
--- a/src/callmanager.cpp
+++ b/src/callmanager.cpp
@@ -651,7 +651,7 @@ void CallManager::dialingToConnected()
QString temp = callList[index].number;
temp = temp.replace( "05123" , "" );
int timeout = temp.toInt( &ok, 10 );
- timeout = ok ? timeout * 1000: 10000;
+ timeout = ok ? timeout * 1000 : 10000;
QTimer::singleShot( timeout, this, SLOT(hangup()) );
}
}