| Summary: | Timezone needs to go to GMT +13 | ||
|---|---|---|---|
| Product: | [Applications] digikam | Reporter: | Fran McGowan <fran> |
| Component: | Plugin-Generic-GeolocationEdit | Assignee: | Digikam Developers <digikam-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Slackware | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | 0.1.0 | |
| Sentry Crash Report: | |||
|
Description
Fran McGowan
2007-03-11 22:14:38 UTC
Fran, I can add GMT+13, no problem... Is GMT-13 exist ? Gilles In the Geolocalization - Correlator - I can only see from GMT -12 to GMT +12 SVN commit 641670 by cgilles:
kipi-plugins from trunk : GPS Sync dialog : add missing GMT+13 and GMT+14 time zone
BUG: 142848
M +4 -2 gpssyncdialog.cpp
M +1 -1 gpssyncdialog.h
--- trunk/extragear/libs/kipi-plugins/gpssync/gpssyncdialog.cpp #641669:641670
@@ -1,5 +1,5 @@
/* ============================================================
- * Authors: Gilles Caulier <caulier dot gilles at kdemail dot net>
+ * Authors: Gilles Caulier <caulier dot gilles at gmail dot com>
* Date : 2006-05-16
* Description : a plugin to synchronize pictures with
* a GPS device.
@@ -209,6 +209,8 @@
d->timeZoneCB->insertItem(i18n("GMT+10:00"), 22);
d->timeZoneCB->insertItem(i18n("GMT+11:00"), 23);
d->timeZoneCB->insertItem(i18n("GMT+12:00"), 24);
+ d->timeZoneCB->insertItem(i18n("GMT+13:00"), 25);
+ d->timeZoneCB->insertItem(i18n("GMT+14:00"), 26);
QWhatsThis::add(d->timeZoneCB, i18n("<p>Sets the time zone of the camera during "
"picture shooting, so that the time stamps of the pictures "
"can be converted to GMT to match the GPS time"));
@@ -253,7 +255,7 @@
"(c) 2006-2007, Gilles Caulier");
d->about->addAuthor("Gilles Caulier", I18N_NOOP("Author and Maintainer"),
- "caulier dot gilles at kdemail dot net");
+ "caulier dot gilles at gmail dot com");
KHelpMenu* helpMenu = new KHelpMenu(this, d->about, false);
helpMenu->menu()->removeItemAt(0);
--- trunk/extragear/libs/kipi-plugins/gpssync/gpssyncdialog.h #641669:641670
@@ -1,5 +1,5 @@
/* ============================================================
- * Authors: Gilles Caulier <caulier dot gilles at kdemail dot net>
+ * Authors: Gilles Caulier <caulier dot gilles at gmail dot com>
* Date : 2006-05-16
* Description : a plugin to synchronize pictures with
* a GPS device.
|