author | erik <erik> | 2007-04-23 20:38:22 (UTC) |
---|---|---|
committer | erik <erik> | 2007-04-23 20:38:22 (UTC) |
commit | d38e40fe9ee475230425fa83e924c49e5946b87c (patch) (unidiff) | |
tree | f10fceda92538e1bc9cee66f82062773974ec092 /noncore | |
parent | 1edbb754d3c8cfccf1630e2ad1e531e907555cbd (diff) | |
download | opie-d38e40fe9ee475230425fa83e924c49e5946b87c.zip opie-d38e40fe9ee475230425fa83e924c49e5946b87c.tar.gz opie-d38e40fe9ee475230425fa83e924c49e5946b87c.tar.bz2 |
Fix for bug 1848 where the outcome of setting the time to 12:00AM did not
work.
This commit is based on a patch submitted by harlekin. Thank you!
-rw-r--r-- | noncore/settings/netsystemtime/timetabwidget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/settings/netsystemtime/timetabwidget.cpp b/noncore/settings/netsystemtime/timetabwidget.cpp index 895514b..e6fcf7f 100644 --- a/noncore/settings/netsystemtime/timetabwidget.cpp +++ b/noncore/settings/netsystemtime/timetabwidget.cpp | |||
@@ -177,7 +177,7 @@ void TimeTabWidget::setDateTime( const QDateTime &dt ) | |||
177 | if( use12HourTime ) | 177 | if( use12HourTime ) |
178 | { | 178 | { |
179 | int show_hour = t.hour(); | 179 | int show_hour = t.hour(); |
180 | if ( t.hour() >= 12 ) | 180 | if ( t.hour() > 12 ) |
181 | { | 181 | { |
182 | show_hour -= 12; | 182 | show_hour -= 12; |
183 | cbAmpm->setCurrentItem( ValuePM ); | 183 | cbAmpm->setCurrentItem( ValuePM ); |
@@ -239,7 +239,7 @@ void TimeTabWidget::slotUse12HourTime( int i ) | |||
239 | sbHour->setMinValue( 1 ); | 239 | sbHour->setMinValue( 1 ); |
240 | sbHour->setMaxValue( 12 ); | 240 | sbHour->setMaxValue( 12 ); |
241 | 241 | ||
242 | if ( show_hour >= 12 ) | 242 | if ( show_hour > 12 ) |
243 | { | 243 | { |
244 | show_hour -= 12; | 244 | show_hour -= 12; |
245 | cbAmpm->setCurrentItem( ValuePM ); | 245 | cbAmpm->setCurrentItem( ValuePM ); |