summaryrefslogtreecommitdiffstats
path: root/kaddressbook/xxport/gnokii_xxport.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kaddressbook/xxport/gnokii_xxport.cpp')
-rw-r--r--kaddressbook/xxport/gnokii_xxport.cpp90
1 files changed, 45 insertions, 45 deletions
diff --git a/kaddressbook/xxport/gnokii_xxport.cpp b/kaddressbook/xxport/gnokii_xxport.cpp
index c6bd0917..faf52707 100644
--- a/kaddressbook/xxport/gnokii_xxport.cpp
+++ b/kaddressbook/xxport/gnokii_xxport.cpp
@@ -173,9 +173,9 @@ static gn_error read_phone_memstat( const gn_memory_type memtype, gn_memory_stat
static TQString buildPhoneInfoString( const gn_memory_status &memstat )
{
- TQString format = TQString::fromLatin1("<tr><td><b>%1</b></td><td>%2</td></tr>");
+ TQString format = TQString::tqfromLatin1("<tr><td><b>%1</b></td><td>%2</td></tr>");
- return TQString::fromLatin1("<b>%1</b><br><table>%2%3%4%5%6</table><br>")
+ return TQString::tqfromLatin1("<b>%1</b><br><table>%2%3%4%5%6</table><br>")
.arg(i18n("Mobile Phone information:"))
.arg(format.arg(i18n("Manufacturer")).arg(GN_FROM(manufacturer)))
.arg(format.arg(i18n("Phone model")).arg(GN_FROM(model)))
@@ -272,7 +272,7 @@ static gn_error read_phone_entries( const char *memtypestr, gn_memory_type memty
TQDateTime datetime;
gn_timestamp ts = gn_lib_get_pb_date(state);
if (ts.year<1998)
- datetime = TQDateTime::currentDateTime();
+ datetime = TQDateTime::tqcurrentDateTime();
else
datetime = TQDateTime( TQDate(ts.year, ts.month, ts.day),
TQTime(ts.hour, ts.minute, ts.second) );
@@ -481,14 +481,14 @@ static gn_error xxport_phone_write_entry( int phone_location, gn_memory_type mem
if (Addr->isEmpty()) continue;
TQStringList a;
TQChar sem(';');
- TQString sem_repl(TQString::fromLatin1(","));
- a.append( Addr->postOfficeBox().replace( sem, sem_repl ) );
- a.append( Addr->extended() .replace( sem, sem_repl ) );
- a.append( Addr->street() .replace( sem, sem_repl ) );
- a.append( Addr->locality() .replace( sem, sem_repl ) );
- a.append( Addr->region() .replace( sem, sem_repl ) );
- a.append( Addr->postalCode() .replace( sem, sem_repl ) );
- a.append( Addr->country() .replace( sem, sem_repl ) );
+ TQString sem_repl(TQString::tqfromLatin1(","));
+ a.append( Addr->postOfficeBox().tqreplace( sem, sem_repl ) );
+ a.append( Addr->extended() .tqreplace( sem, sem_repl ) );
+ a.append( Addr->street() .tqreplace( sem, sem_repl ) );
+ a.append( Addr->locality() .tqreplace( sem, sem_repl ) );
+ a.append( Addr->region() .tqreplace( sem, sem_repl ) );
+ a.append( Addr->postalCode() .tqreplace( sem, sem_repl ) );
+ a.append( Addr->country() .tqreplace( sem, sem_repl ) );
s = a.join(sem);
gn_lib_set_pb_subentry(state, -1 /* index to append entry */,
GN_PHONEBOOK_ENTRY_Postal, GN_PHONEBOOK_NUMBER_General, GN_TO(s));
@@ -528,7 +528,7 @@ KABC::AddresseeList GNOKIIXXPort::importContacts( const TQString& ) const
{
KABC::AddresseeList addrList;
- if (KMessageBox::Continue != KMessageBox::warningContinueCancel(parentWidget(),
+ if (KMessageBox::Continue != KMessageBox::warningContinueCancel(tqparentWidget(),
i18n("<qt>Please connect your Mobile Phone to your computer and press "
"<b>Continue</b> to start importing the personal contacts.<br><br>"
"Please note that if your Mobile Phone is not properly connected "
@@ -536,7 +536,7 @@ KABC::AddresseeList GNOKIIXXPort::importContacts( const TQString& ) const
"KAddressbook will behave unresponsively.</qt>") ))
return addrList;
- m_progressDlg = new KProgressDialog( parentWidget(), "importwidget",
+ m_progressDlg = new KProgressDialog( tqparentWidget(), "importwidget",
i18n("Mobile Phone Import"),
i18n("<qt><center>Establishing connection to the Mobile Phone.<br><br>"
"Please wait...</center></qt>") );
@@ -555,7 +555,7 @@ KABC::AddresseeList GNOKIIXXPort::importContacts( const TQString& ) const
m_progressDlg->unsetCursor();
if (!errStr.isEmpty()) {
- KMessageBox::error(parentWidget(), errStr);
+ KMessageBox::error(tqparentWidget(), errStr);
delete m_progressDlg;
return addrList;
}
@@ -577,7 +577,7 @@ KABC::AddresseeList GNOKIIXXPort::importContacts( const TQString& ) const
bool GNOKIIXXPort::exportContacts( const KABC::AddresseeList &list, const TQString & )
{
- if (KMessageBox::Continue != KMessageBox::warningContinueCancel(parentWidget(),
+ if (KMessageBox::Continue != KMessageBox::warningContinueCancel(tqparentWidget(),
i18n("<qt>Please connect your Mobile Phone to your computer and press "
"<b>Continue</b> to start exporting the selected personal contacts.<br><br>"
"Please note that if your Mobile Phone is not properly connected "
@@ -585,7 +585,7 @@ bool GNOKIIXXPort::exportContacts( const KABC::AddresseeList &list, const TQStri
"KAddressbook will behave unresponsively.</qt>") ))
return false;
- m_progressDlg = new KProgressDialog( parentWidget(), "importwidget",
+ m_progressDlg = new KProgressDialog( tqparentWidget(), "importwidget",
i18n("Mobile Phone Export"),
i18n("<qt><center>Establishing connection to the Mobile Phone.<br><br>"
"Please wait...</center></qt>") );
@@ -612,7 +612,7 @@ bool GNOKIIXXPort::exportContacts( const KABC::AddresseeList &list, const TQStri
m_progressDlg->unsetCursor();
if (!errStr.isEmpty()) {
- KMessageBox::error(parentWidget(), errStr);
+ KMessageBox::error(tqparentWidget(), errStr);
delete m_progressDlg;
return false;
}
@@ -641,11 +641,11 @@ bool GNOKIIXXPort::exportContacts( const KABC::AddresseeList &list, const TQStri
phone_count = memstat.used;
if (memstat.free >= (int) list.count()) {
- if (KMessageBox::No == KMessageBox::questionYesNo(parentWidget(),
+ if (KMessageBox::No == KMessageBox::questionYesNo(tqparentWidget(),
i18n("<qt>Do you want the selected contacts to be <b>appended</b> to "
- "the current mobile phonebook or should they <b>replace</b> all "
+ "the current mobile phonebook or should they <b>tqreplace</b> all "
"currently existing phonebook entries ?<br><br>"
- "Please note, that in case you choose to replace the phonebook "
+ "Please note, that in case you choose to tqreplace the phonebook "
"entries, every contact in your phone will be deleted and only "
"the newly exported contacts will be available from inside your phone.</qt>"),
i18n("Export to Mobile Phone"),
@@ -760,7 +760,7 @@ finish:
if (!failedList.isEmpty()) {
GNOKII_DEBUG(TQString("Failed to export: %1\n").arg(failedList.join(", ")));
- KMessageBox::informationList(parentWidget(),
+ KMessageBox::informationList(tqparentWidget(),
i18n("<qt>The following contacts could not be exported to the Mobile Phone. "
"Possible Reasons for this problem could be:<br><ul>"
"<li>The contacts contain more information per entry than the phone can store.</li>"
@@ -827,7 +827,7 @@ static TQString businit(void)
return i18n("Gnokii is not yet configured.");
// uncomment to debug all gnokii communication on stderr.
- // gn_log_debug_mask = GN_LOG_T_STDERR;
+ // gn_log_debug_tqmask = GN_LOG_T_STDERR;
gn_data_clear(&data);
@@ -947,9 +947,9 @@ static bool phone_entry_empty( const int index, const gn_memory_type memtype )
static TQString buildPhoneInfoString( const gn_memory_status &memstat )
{
- TQString format = TQString::fromLatin1("<tr><td><b>%1</b></td><td>%2</td></tr>");
+ TQString format = TQString::tqfromLatin1("<tr><td><b>%1</b></td><td>%2</td></tr>");
- return TQString::fromLatin1("<b>%1</b><br><table>%2%3%4%5%6</table><br>")
+ return TQString::tqfromLatin1("<b>%1</b><br><table>%2%3%4%5%6</table><br>")
.arg(i18n("Mobile Phone information:"))
.arg(format.arg(i18n("Manufacturer")).arg(GN_FROM(manufacturer)))
.arg(format.arg(i18n("Phone model")).arg(GN_FROM(model)))
@@ -1048,7 +1048,7 @@ static gn_error read_phone_entries( const char *memtypestr, gn_memory_type memty
// evaluate timestamp (ignore timezone)
TQDateTime datetime;
if (entry.date.year<1998)
- datetime = TQDateTime::currentDateTime();
+ datetime = TQDateTime::tqcurrentDateTime();
else
datetime = TQDateTime( TQDate(entry.date.year, entry.date.month, entry.date.day),
TQTime(entry.date.hour, entry.date.minute, entry.date.second) );
@@ -1267,14 +1267,14 @@ static gn_error xxport_phone_write_entry( int phone_location, gn_memory_type mem
subentry->entry_type = GN_PHONEBOOK_ENTRY_Postal;
TQStringList a;
TQChar sem(';');
- TQString sem_repl(TQString::fromLatin1(","));
- a.append( Addr->postOfficeBox().replace( sem, sem_repl ) );
- a.append( Addr->extended() .replace( sem, sem_repl ) );
- a.append( Addr->street() .replace( sem, sem_repl ) );
- a.append( Addr->locality() .replace( sem, sem_repl ) );
- a.append( Addr->region() .replace( sem, sem_repl ) );
- a.append( Addr->postalCode() .replace( sem, sem_repl ) );
- a.append( Addr->country() .replace( sem, sem_repl ) );
+ TQString sem_repl(TQString::tqfromLatin1(","));
+ a.append( Addr->postOfficeBox().tqreplace( sem, sem_repl ) );
+ a.append( Addr->extended() .tqreplace( sem, sem_repl ) );
+ a.append( Addr->street() .tqreplace( sem, sem_repl ) );
+ a.append( Addr->locality() .tqreplace( sem, sem_repl ) );
+ a.append( Addr->region() .tqreplace( sem, sem_repl ) );
+ a.append( Addr->postalCode() .tqreplace( sem, sem_repl ) );
+ a.append( Addr->country() .tqreplace( sem, sem_repl ) );
s = a.join(sem);
strncpy(subentry->data.number, GN_TO(s), sizeof(subentry->data.number)-1);
entry.subentries_count++;
@@ -1323,7 +1323,7 @@ KABC::AddresseeList GNOKIIXXPort::importContacts( const TQString& ) const
{
KABC::AddresseeList addrList;
- if (KMessageBox::Continue != KMessageBox::warningContinueCancel(parentWidget(),
+ if (KMessageBox::Continue != KMessageBox::warningContinueCancel(tqparentWidget(),
i18n("<qt>Please connect your Mobile Phone to your computer and press "
"<b>Continue</b> to start importing the personal contacts.<br><br>"
"Please note that if your Mobile Phone is not properly connected "
@@ -1331,7 +1331,7 @@ KABC::AddresseeList GNOKIIXXPort::importContacts( const TQString& ) const
"KAddressbook will behave unresponsively.</qt>") ))
return addrList;
- m_progressDlg = new KProgressDialog( parentWidget(), "importwidget",
+ m_progressDlg = new KProgressDialog( tqparentWidget(), "importwidget",
i18n("Mobile Phone Import"),
i18n("<qt><center>Establishing connection to the Mobile Phone.<br><br>"
"Please wait...</center></qt>") );
@@ -1350,7 +1350,7 @@ KABC::AddresseeList GNOKIIXXPort::importContacts( const TQString& ) const
m_progressDlg->unsetCursor();
if (!errStr.isEmpty()) {
- KMessageBox::error(parentWidget(), errStr);
+ KMessageBox::error(tqparentWidget(), errStr);
delete m_progressDlg;
return addrList;
}
@@ -1372,7 +1372,7 @@ KABC::AddresseeList GNOKIIXXPort::importContacts( const TQString& ) const
bool GNOKIIXXPort::exportContacts( const KABC::AddresseeList &list, const TQString & )
{
- if (KMessageBox::Continue != KMessageBox::warningContinueCancel(parentWidget(),
+ if (KMessageBox::Continue != KMessageBox::warningContinueCancel(tqparentWidget(),
i18n("<qt>Please connect your Mobile Phone to your computer and press "
"<b>Continue</b> to start exporting the selected personal contacts.<br><br>"
"Please note that if your Mobile Phone is not properly connected "
@@ -1380,7 +1380,7 @@ bool GNOKIIXXPort::exportContacts( const KABC::AddresseeList &list, const TQStri
"KAddressbook will behave unresponsively.</qt>") ))
return false;
- m_progressDlg = new KProgressDialog( parentWidget(), "importwidget",
+ m_progressDlg = new KProgressDialog( tqparentWidget(), "importwidget",
i18n("Mobile Phone Export"),
i18n("<qt><center>Establishing connection to the Mobile Phone.<br><br>"
"Please wait...</center></qt>") );
@@ -1407,7 +1407,7 @@ bool GNOKIIXXPort::exportContacts( const KABC::AddresseeList &list, const TQStri
m_progressDlg->unsetCursor();
if (!errStr.isEmpty()) {
- KMessageBox::error(parentWidget(), errStr);
+ KMessageBox::error(tqparentWidget(), errStr);
delete m_progressDlg;
return false;
}
@@ -1436,11 +1436,11 @@ bool GNOKIIXXPort::exportContacts( const KABC::AddresseeList &list, const TQStri
phone_count = memstat.used;
if (memstat.free >= (int) list.count()) {
- if (KMessageBox::No == KMessageBox::questionYesNo(parentWidget(),
+ if (KMessageBox::No == KMessageBox::questionYesNo(tqparentWidget(),
i18n("<qt>Do you want the selected contacts to be <b>appended</b> to "
- "the current mobile phonebook or should they <b>replace</b> all "
+ "the current mobile phonebook or should they <b>tqreplace</b> all "
"currently existing phonebook entries ?<br><br>"
- "Please note, that in case you choose to replace the phonebook "
+ "Please note, that in case you choose to tqreplace the phonebook "
"entries, every contact in your phone will be deleted and only "
"the newly exported contacts will be available from inside your phone.</qt>"),
i18n("Export to Mobile Phone"),
@@ -1555,7 +1555,7 @@ finish:
if (!failedList.isEmpty()) {
GNOKII_DEBUG(TQString("Failed to export: %1\n").arg(failedList.join(", ")));
- KMessageBox::informationList(parentWidget(),
+ KMessageBox::informationList(tqparentWidget(),
i18n("<qt>The following contacts could not be exported to the Mobile Phone. "
"Possible Reasons for this problem could be:<br><ul>"
"<li>The contacts contain more information per entry than the phone can store.</li>"
@@ -1583,7 +1583,7 @@ finish:
KABC::AddresseeList GNOKIIXXPort::importContacts( const TQString& ) const
{
KABC::AddresseeList addrList;
- KMessageBox::error(parentWidget(), i18n("Gnokii interface is not available.\n"
+ KMessageBox::error(tqparentWidget(), i18n("Gnokii interface is not available.\n"
"Please ask your distributor to add gnokii at compile time."));
return addrList;
}
@@ -1591,7 +1591,7 @@ KABC::AddresseeList GNOKIIXXPort::importContacts( const TQString& ) const
bool GNOKIIXXPort::exportContacts( const KABC::AddresseeList &list, const TQString & )
{
Q_UNUSED(list);
- KMessageBox::error(parentWidget(), i18n("Gnokii interface is not available.\n"
+ KMessageBox::error(tqparentWidget(), i18n("Gnokii interface is not available.\n"
"Please ask your distributor to add gnokii at compile time."));
return true;
}