summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-11-04 01:30:58 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2012-11-04 01:30:58 -0600
commitfae65940e8688806b47020f41410540d3caa9bdf (patch)
tree4914864c8d2f0279f34ffb45fb7a289a623f85a6
parentaf10979845a8766fbd1383775776a3d7a85efb27 (diff)
downloadtdesdk-fae65940.tar.gz
tdesdk-fae65940.zip
Fix references to user profile directory.
-rw-r--r--cervisia/cervisia.1.in2
-rw-r--r--cervisia/cervisia.pod2
-rw-r--r--doc/kbabel/preferences.docbook2
-rw-r--r--doc/scripts/tdesvn-build/index.docbook4
-rw-r--r--kbabel/datatools/regexp/main.cc2
-rw-r--r--kbabel/datatools/regexp/regexplist.xml2
-rw-r--r--umbrello/umbrello/configurable.h2
7 files changed, 8 insertions, 8 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 5058feac..7e8291bd 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/doc/scripts/tdesvn-build/index.docbook b/doc/scripts/tdesvn-build/index.docbook
index c14eccb4..d9c58333 100644
--- a/doc/scripts/tdesvn-build/index.docbook
+++ b/doc/scripts/tdesvn-build/index.docbook
@@ -279,10 +279,10 @@ If you are not using a dedicated user, set a different <envar>$TDEHOME</envar> f
new environment in your <filename>.bash_profile</filename>:
<programlisting>
-export TDEHOME="${HOME}/.kde-svn"
+export TDEHOME="${HOME}/.tde-svn"
# Create it if needed
-[ ! -e ~/.kde-svn ] &amp;&amp; mkdir ~/.kde-svn
+[ ! -e ~/.tde-svn ] &amp;&amp; mkdir ~/.tde-svn
</programlisting>
</para>
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;