Fix a few remaining references to kio_

pull/1/head
Timothy Pearson 11 years ago
parent ba9b738e86
commit 82d47ff1c4

@ -77,12 +77,12 @@
<keywordset>
<keyword>KDE</keyword>
<keyword>kio-locate</keyword>
<keyword>kio_locate</keyword>
<keyword>tdeio_locate</keyword>
<keyword>kiolocate</keyword>
<keyword>locate</keyword>
<keyword>slocate</keyword>
<keyword>kio-slave</keyword>
<keyword>kio_slave</keyword>
<keyword>tdeio_slave</keyword>
<keyword>tdeioslave</keyword>
<keyword>search</keyword>
</keywordset>

@ -1,4 +1,4 @@
# translation of kio_locate.po to French
# translation of tdeio_locate.po to French
# kio-locate: KDE I/O Slave for the locate command
#
# Copyright (C) 2004 by Armin Straub
@ -8,7 +8,7 @@
# Laurent Rathle <lrathle@kde-france.org>, 2004.
msgid ""
msgstr ""
"Project-Id-Version: kio_locate\n"
"Project-Id-Version: tdeio_locate\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-09-15 10:08+0200\n"
"PO-Revision-Date: 2004-10-21 16:52+0200\n"

@ -49,7 +49,7 @@ done
tdeconfig_compiler -d $TMPHACK $SRCDIR/*.kcfg $SRCDIR/*.kcfgc
## bad hack to get strings from *.ui files
$XGETTEXT `find $SRCDIR -name "*.cpp"` -o kio_locate.pot
$XGETTEXT `find $SRCDIR -name "*.cpp"` -o tdeio_locate.pot
## bad hack to get strings from *.ui files
rm -rf "$TMPHACK"
@ -62,7 +62,7 @@ rm -f $SRCDIR/_translatorinfo.cpp
echo "merging the .po files"
for i in `ls *.po`; do
msgmerge $i kio_locate.pot -o $i || exit 1
msgmerge $i tdeio_locate.pot -o $i || exit 1
done
## finished

@ -31,13 +31,13 @@ install( FILES rlocate.protocol DESTINATION ${SERVICES_INSTALL_DIR} )
install( FILES locate.desktop DESTINATION ${SERVICES_INSTALL_DIR}/searchproviders )
##### kio_locate ##############################
##### tdeio_locate ##############################
set( target kio_locate )
set( target tdeio_locate )
set( ${target}_SRCS
klocateconfig.kcfgc klocateconfigwidget.ui klocateconfigfilterwidget.ui
klocateconfiglocatewidget.ui kio_locate.cpp locater.cpp pattern.cpp
klocateconfiglocatewidget.ui tdeio_locate.cpp locater.cpp pattern.cpp
)
tde_add_kpart( ${target} AUTOMOC

@ -1,5 +1,5 @@
# Code generation options for tdeconfig_compiler
File=kio_locate.kcfg
File=tdeio_locate.kcfg
ClassName=KLocateConfig
Singleton=true
Mutators=true

@ -1,5 +1,5 @@
[Protocol]
exec=kio_locate
exec=tdeio_locate
protocol=locate
input=none
output=filesystem

@ -1,5 +1,5 @@
[Protocol]
exec=kio_locate
exec=tdeio_locate
protocol=locater
input=none
output=filesystem

@ -1,5 +1,5 @@
[Protocol]
exec=kio_locate
exec=tdeio_locate
protocol=rlocate
input=none
output=filesystem

@ -39,7 +39,7 @@
#include <kuser.h>
#include <tqfile.h>
#include "kio_locate.h"
#include "tdeio_locate.h"
#include "klocateconfig.h"
#include "klocateconfigwidget.h"
#include "klocateconfigfilterwidget.h"
@ -264,7 +264,7 @@ static const UDSEntry pathToUDSEntry(const TQString& path, const TQString& displ
// INITIALIZATION
LocateProtocol::LocateProtocol(const TQCString &pool_socket, const TQCString &app_socket)
: SlaveBase("kio_locate", pool_socket, app_socket)
: SlaveBase("tdeio_locate", pool_socket, app_socket)
{
DEBUGSTR << "LocateProtocol::LocateProtocol()" << endl;
@ -1015,22 +1015,22 @@ extern "C"
{
// We use TDEApplication instead of TDEInstance here, because we use a
// config dialog and such gui stuff.
TDEApplication app(argc, argv, "kio_locate", false, true);
TDEApplication app(argc, argv, "tdeio_locate", false, true);
DEBUGSTR << "*** Starting kio_locate " << endl;
DEBUGSTR << "*** Starting tdeio_locate " << endl;
if (argc != 4) {
DEBUGSTR << "Usage: kio_locate protocol domain-socket1 domain-socket2" << endl;
DEBUGSTR << "Usage: tdeio_locate protocol domain-socket1 domain-socket2" << endl;
exit(-1);
}
LocateProtocol slave(argv[2], argv[3]);
slave.dispatchLoop();
DEBUGSTR << "*** kio_locate Done" << endl;
DEBUGSTR << "*** tdeio_locate Done" << endl;
return 0;
}
}
#include "kio_locate.moc"
#include "tdeio_locate.moc"

@ -56,8 +56,8 @@
* of course).
*/
#ifndef _kio_locate_H_
#define _kio_locate_H_
#ifndef _tdeio_locate_H_
#define _tdeio_locate_H_
#include <tqcstring.h>
#include <tqstring.h>

@ -4,7 +4,7 @@
xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0
http://www.kde.org/standards/kcfg/1.0/kcfg.xsd" >
<kcfgfile name="kio_locaterc"/>
<kcfgfile name="tdeio_locaterc"/>
<include>klocale.h</include>
<group name="General">
<entry name="caseSensitivity" type="Int">

Loading…
Cancel
Save