Fix references to user profile directory.

(cherry picked from commit fae65940e8)
v3.5.13-sru
Darrell Anderson 12 years ago committed by Slávek Banko
parent 71482a8fc7
commit a27aa7c7af

@ -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

@ -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

@ -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>

@ -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 ) ) {

@ -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.

@ -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;

Loading…
Cancel
Save