summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-11-04 01:24:38 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-11-17 18:35:40 +0100
commita5c88dc0c6aa1cde7477844230437958081fdff8 (patch)
tree326c9b1a42436107e4062cece7a329d0bdc09d4b
parent90ad5249f5c4eec0e7535e52f4bc75bd65abe606 (diff)
downloadtdevelop-a5c88dc0c6aa1cde7477844230437958081fdff8.tar.gz
tdevelop-a5c88dc0c6aa1cde7477844230437958081fdff8.zip
Fix references to user profile directory.
(cherry picked from commit 7ccec9def581eca60cd30bbcd6bda08024d81879)
-rw-r--r--doc/api/HowToAddApplicationTemplates.dox2
-rw-r--r--doc/api/HowToAddPlugins.dox2
-rw-r--r--src/profileengine/lib/profileengine.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/HowToAddApplicationTemplates.dox b/doc/api/HowToAddApplicationTemplates.dox
index 7eec80c7..73af9258 100644
--- a/doc/api/HowToAddApplicationTemplates.dox
+++ b/doc/api/HowToAddApplicationTemplates.dox
@@ -135,7 +135,7 @@ if [ `id -u` = 0 ]; then
# we are root so install the template into the global kde directory
kde_dir=`kde-config --prefix`
else
- # we are a user so install it into $HOME/.kde/share/apps/kdevappwizard directory
+ # we are a user so install it into $HOME/.trinity/share/apps/kdevappwizard directory
kde_dir=`kde-config --localprefix`
echo "Note: It would be better to install as root. Press CTRL+C to abort"
fi
diff --git a/doc/api/HowToAddPlugins.dox b/doc/api/HowToAddPlugins.dox
index ce8f259a..c8d64d62 100644
--- a/doc/api/HowToAddPlugins.dox
+++ b/doc/api/HowToAddPlugins.dox
@@ -195,7 +195,7 @@ void GDBBreakpointWidget::savePartialProjectSession(QDomElement* el)
</pre></code>
Note that the .kdevses is related to a project. User settings equal for all projects don't
-belong to here. You save them to ~/.kde/share/config/kdeveloprc via class KConfig of the
+belong to here. You save them to ~/.trinity/share/config/kdeveloprc via class KConfig of the
kdecore library.
Document your part in the way described at \ref howToDocument (doc/api/HowToDocument.dox file).
diff --git a/src/profileengine/lib/profileengine.h b/src/profileengine/lib/profileengine.h
index e790dece..fef4947d 100644
--- a/src/profileengine/lib/profileengine.h
+++ b/src/profileengine/lib/profileengine.h
@@ -119,7 +119,7 @@ public:
KURL::List resourcesRecursive(const TQString &profileName, const TQString &nameFilter);
/**Adds a resource for the profile. Resource will be copied to the user profile directory
- (like $HOME/.kde/share/apps/kdevelop/profiles/...).
+ (like $HOME/.trinity/share/apps/kdevelop/profiles/...).
@param profileName A name of the profile.
@param url The url to a file to copy as a profile resource.*/
void addResource(const TQString &profileName, const KURL &url);