diff options
author | Darrell Anderson <[email protected]> | 2012-11-04 01:04:21 -0500 |
---|---|---|
committer | Darrell Anderson <[email protected]> | 2012-11-04 01:04:21 -0500 |
commit | a09ed2cc43f2688c140376d37d4e59f5c7313801 (patch) | |
tree | 2d38246cac36617459c6381a12edddda15035fe6 /src | |
parent | 774bbe19c335a729e8cc14f401f29a016bfa5534 (diff) | |
download | kile-a09ed2cc43f2688c140376d37d4e59f5c7313801.tar.gz kile-a09ed2cc43f2688c140376d37d4e59f5c7313801.zip |
Fix references to user profile directory.
Diffstat (limited to 'src')
-rw-r--r-- | src/kile/kilejscript.h | 2 | ||||
-rw-r--r-- | src/kile/symbols/testfile.tex | 2 | ||||
-rw-r--r-- | src/kile/templates.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/kile/kilejscript.h b/src/kile/kilejscript.h index de0706b..9593176 100644 --- a/src/kile/kilejscript.h +++ b/src/kile/kilejscript.h @@ -167,7 +167,7 @@ class Manager : public TQObject { /** * Returns the directory that can be used by the used to store Kile's scripts. - * Usually $HOME/.kde/share/apps/kile/scripts + * Usually $HOME/.trinity/share/apps/kile/scripts **/ TQString getLocalJScriptDirectory() const; diff --git a/src/kile/symbols/testfile.tex b/src/kile/symbols/testfile.tex index 59dfe54..6dafbb5 100644 --- a/src/kile/symbols/testfile.tex +++ b/src/kile/symbols/testfile.tex @@ -19,7 +19,7 @@ % - Needed packages can be specified using \pkgs[package-opt-argument]{package-name} for a single command or with \begin{neededpkgs}[pkgs-args,]{pkgs,} ... \end{neededpkgs} for all enclosed commands. % - The \pkgs command has to be in front of the \command command and overrides any pkg specification by the neededpkgs enviroment. % - The optional argument of \command and \mathcommand can hold a different command for insertion, e.g. useful for stuff like \mathcommand[\stackrel{}{}]{\stackrel{abc}{=}} -% After writing your custom tex file mysymbols.tex , you have to issue `gesymb mysymbols.tex user` and if everything went well copy the files to "$HOME/.kde/share/apps/kile/mathsymbols/user". +% After writing your custom tex file mysymbols.tex , you have to issue `gesymb mysymbols.tex user` and if everything went well copy the files to "$HOME/.trinity/share/apps/kile/mathsymbols/user". % After restarting kile you should see your icons in the "User defined`` symbol list. \begin{neededpkgs}{envpkg-blubb} \command{a} diff --git a/src/kile/templates.cpp b/src/kile/templates.cpp index c0072aa..4dd089d 100644 --- a/src/kile/templates.cpp +++ b/src/kile/templates.cpp @@ -66,7 +66,7 @@ Manager::~Manager() { bool Manager::copyAppData(const KURL& src, const TQString& subdir, const TQString& fileName) { TQString dir; //let saveLocation find and create the appropriate place to - //store the templates (usually $HOME/.kde/share/apps/kile/templates) + //store the templates (usually $HOME/.trinity/share/apps/kile/templates) dir = KGlobal::dirs()->saveLocation("appdata", subdir, true); KURL targetURL = KURL::fromPathOrURL(dir); targetURL.addPath(fileName); |