summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-11-04 01:30:58 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-11-08 03:06:28 +0100
commita27aa7c7afb551b104665bf74a3f3b4b9d52484a (patch)
treeefe88588e4897ff9b0ee0fc83cae8161b69c084c
parent71482a8fc77d88f374abd3311eb87677beba3836 (diff)
downloadtdesdk-a27aa7c7afb551b104665bf74a3f3b4b9d52484a.tar.gz
tdesdk-a27aa7c7afb551b104665bf74a3f3b4b9d52484a.zip
Fix references to user profile directory.
(cherry picked from commit fae65940e8688806b47020f41410540d3caa9bdf)
-rw-r--r--cervisia/cervisia.1.in2
-rw-r--r--cervisia/cervisia.pod2
-rw-r--r--doc/kbabel/preferences.docbook2
-rw-r--r--kbabel/datatools/regexp/main.cc2
-rw-r--r--kbabel/datatools/regexp/regexplist.xml2
-rw-r--r--umbrello/umbrello/configurable.h2
6 files changed, 6 insertions, 6 deletions
diff --git a/cervisia/cervisia.1.in b/cervisia/cervisia.1.in
index b60c2f3c..d16748e6 100644
--- a/cervisia/cervisia.1.in
+++ b/cervisia/cervisia.1.in
@@ -200,7 +200,7 @@ Sets the geometry of the main window
.IX Header "FILES"
\&\fI_KDECONFDIR_/cervisiarc\fR \- global configuration file
.Sp
-\&\fI$HOME/.kde/share/config/cervisiarc\fR \- user-specific configuration file
+\&\fI$HOME/.trinity/share/config/cervisiarc\fR \- user-specific configuration file
.SH "SEE ALSO"
.IX Header "SEE ALSO"
\&\fI_KDEHTMLDIR_/en/cervisia/index.html\fR
diff --git a/cervisia/cervisia.pod b/cervisia/cervisia.pod
index 940ba8e0..bbdbe23a 100644
--- a/cervisia/cervisia.pod
+++ b/cervisia/cervisia.pod
@@ -88,7 +88,7 @@ Sets the geometry of the main window
F<_KDECONFDIR_/cervisiarc> - global configuration file
-F<$HOME/.kde/share/config/cervisiarc> - user-specific configuration file
+F<$HOME/.trinity/share/config/cervisiarc> - user-specific configuration file
=head1 SEE ALSO
diff --git a/doc/kbabel/preferences.docbook b/doc/kbabel/preferences.docbook
index fbaeee10..40a79150 100644
--- a/doc/kbabel/preferences.docbook
+++ b/doc/kbabel/preferences.docbook
@@ -957,7 +957,7 @@ with <command>ispell</command> when using ISO-8859-1.)
<listitem><para>
Here you can set location of the file for ignored words. Click
on the folder icon to the right of the edit box. The default is
- <filename>$<envar>HOME</envar>/.kde/share/apps/kbabel/spellignores</filename>,
+ <filename>$<envar>HOME</envar>/.trinity/share/apps/kbabel/spellignores</filename>,
where <filename>$<envar>HOME</envar></filename> is your home folder.
</para></listitem>
</varlistentry>
diff --git a/kbabel/datatools/regexp/main.cc b/kbabel/datatools/regexp/main.cc
index eca0be81..7d3c3120 100644
--- a/kbabel/datatools/regexp/main.cc
+++ b/kbabel/datatools/regexp/main.cc
@@ -110,7 +110,7 @@ bool RegExpTool::run( const TQString& command, void* data, const TQString& datat
void RegExpTool::loadExpressions()
{
// TODO: Change file path
- TQFile file( TQDir::homeDirPath() + "/.kde/share/apps/kbabel/regexplist.xml" );
+ TQFile file( TQDir::homeDirPath() + "/.trinity/share/apps/kbabel/regexplist.xml" );
TQDomDocument doc;
if ( ! file.open( IO_ReadOnly ) ) {
diff --git a/kbabel/datatools/regexp/regexplist.xml b/kbabel/datatools/regexp/regexplist.xml
index 1cd0b23d..72f647cb 100644
--- a/kbabel/datatools/regexp/regexplist.xml
+++ b/kbabel/datatools/regexp/regexplist.xml
@@ -10,7 +10,7 @@
...
</regexplist>
- Right now the file should be copied to ~/.kde/share/apps/kbabel/regexplist.xml. I'm sorry this cannot be configured but hope it will in the future. By the time if you need another location you have to modify the source code (main.cc)
+ Right now the file should be copied to ~/.trinity/share/apps/kbabel/regexplist.xml. I'm sorry this cannot be configured but hope it will in the future. By the time if you need another location you have to modify the source code (main.cc)
You'll see in the example that most expressions start with '(^| |\\t)+' and then a word. This is to ensure it _is_ a word. Using the usual expressions to ensure we pick up a whole word doesn't work for the catalan language. Anyway, if you need to match a tab be sure you use the '\\t' expression.
diff --git a/umbrello/umbrello/configurable.h b/umbrello/umbrello/configurable.h
index e26c4e87..df6bf7d8 100644
--- a/umbrello/umbrello/configurable.h
+++ b/umbrello/umbrello/configurable.h
@@ -80,7 +80,7 @@ public:
* The configure interface is required to be implemented by all subclasses
* of this class. It is expected that configuration implementations all
* understand how to attain their session configuration file. These files
- * are stored in ~/.kde/share/config. What actions are taken with the
+ * are stored in ~/.trinity/share/config. What actions are taken with the
* configuration class are defined by implementing classes.
*/
virtual bool configure() = 0;