diff options
author | Michele Calgaro <[email protected]> | 2025-01-22 17:48:33 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-02-03 22:55:29 +0900 |
commit | ba759c68a0d76f3bd39cca9cc62c2b31bf4a5f86 (patch) | |
tree | 12e785c7a4e4cabbac960f2743de01a79ba77c2f /src/cite | |
parent | 0ed59f2f132ebbe7b340ea93ea1de240e712473e (diff) | |
download | tellico-master.tar.gz tellico-master.zip |
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/cite')
-rw-r--r-- | src/cite/openoffice.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cite/openoffice.cpp b/src/cite/openoffice.cpp index 67be849..411c01c 100644 --- a/src/cite/openoffice.cpp +++ b/src/cite/openoffice.cpp @@ -82,7 +82,7 @@ bool OpenOffice::connect() { StatusBar::self()->setStatus(i18n("Connecting to OpenOffice.org...")); if(d->port == -1) { - TDEConfigGroup config(kapp->config(), "OpenOffice.org"); + TDEConfigGroup config(tdeApp->config(), "OpenOffice.org"); d->host = config.readEntry("Host", TQString::fromLatin1("localhost")); d->port = config.readNumEntry("Port", 2083); d->pipe = config.readPathEntry("Pipe"); @@ -253,7 +253,7 @@ bool OpenOffice::connectionDialog() { d->handler->setPipe(TQFile::encodeName(d->pipe)); } - TDEConfigGroup config(kapp->config(), "OpenOffice.org"); + TDEConfigGroup config(tdeApp->config(), "OpenOffice.org"); config.writeEntry("Host", d->host); config.writeEntry("Port", d->port); config.writePathEntry("Pipe", d->pipe); |