summaryrefslogtreecommitdiffstats
path: root/Documentation/ConduitProgrammingTutorial
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-21 01:43:11 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-21 01:43:11 +0000
commit0ef0bc641a7b1e7bb3a26118e077d7aa2d854e60 (patch)
tree27393667b9fe243a9f199ace9c982c2b45ba8782 /Documentation/ConduitProgrammingTutorial
parent9abdf0551e3660f55791ce3720d5f7035c06aa19 (diff)
downloadkpilot-0ef0bc641a7b1e7bb3a26118e077d7aa2d854e60.tar.gz
kpilot-0ef0bc641a7b1e7bb3a26118e077d7aa2d854e60.zip
Convert remaining references to kde3 (e.g. in paths) to trinity
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kpilot@1248408 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'Documentation/ConduitProgrammingTutorial')
-rw-r--r--Documentation/ConduitProgrammingTutorial/index.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/ConduitProgrammingTutorial/index.tex b/Documentation/ConduitProgrammingTutorial/index.tex
index aed082e..66b17f3 100644
--- a/Documentation/ConduitProgrammingTutorial/index.tex
+++ b/Documentation/ConduitProgrammingTutorial/index.tex
@@ -147,7 +147,7 @@ From your system's point of view, a conduit is a shared library which is loaded
on demand by KPilot. This means that as long as you don't do a sync, the conduit will not
be in memory. Once a hotsync is initiated, kpilotDaemon (the process running in
the background that does the actual sync) loads the conduit, let's say its name
-is "malconduit" and it is installed as /opt/kde3/lib/kde3/libmalconduit.so. It
+is "malconduit" and it is installed as /opt/trinity/lib/trinity/libmalconduit.so. It
then calls the function \code{init\_libmalconduit} (the name after init\_ is the
filename of the library), which needs to return a pointer to an instance
of a \class{KLibFactory} subclass.