]> git.lyx.org Git - features.git/commitdiff
Move a helper text into LyXRC::getDescription (RC_PATH_PREFIX)
authorAngus Leeming <leeming@lyx.org>
Tue, 1 Feb 2005 22:48:23 +0000 (22:48 +0000)
committerAngus Leeming <leeming@lyx.org>
Tue, 1 Feb 2005 22:48:23 +0000 (22:48 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9566 a592a061-630c-0410-9148-cb99ea01b6c8

src/ChangeLog
src/frontends/xforms/ChangeLog
src/frontends/xforms/FormPreferences.C
src/lyxrc.C

index b1115282383227b7a2ff513152140b806c62a7a3..141f33f0b8944283fd68df0d3bce297c0db1c27b 100644 (file)
@@ -1,3 +1,7 @@
+2005-02-01  Angus Leeming  <leeming@lyx.org>
+
+       * lyxrc.C (getDescription): add a description for RC_PATH_PREFIX.
+
 2005-02-01  Angus Leeming  <leeming@lyx.org>
 
        * lyx_main.C (init, queryUserLyXDir): use fs::exists() before
index ab900e5fd347529f18417091f6f019d70b5f8aa6..bd93cdb8b5a5b0b0259a584af7fb9485af91fa45 100644 (file)
@@ -1,3 +1,8 @@
+2005-02-01  Angus Leeming  <leeming@lyx.org>
+
+       * FormPreferences.C (feedback): use LyXRC::getDescription for
+       RC_PATH_PREFIX.
+
 2005-02-01  Angus Leeming  <leeming@lyx.org>
 
        * FormFiledialog.C (Reread): use fs::exists() before
index 26b5c1ac3bc30da4eb17cf0b4543ad94ff9a5b2f..a55055b026aa327c9dea1a93d62d786a97e5b4ea 100644 (file)
@@ -2269,9 +2269,7 @@ FormPreferences::Paths::feedback(FL_OBJECT const * const ob) const
        if (ob == dialog_->input_serverpipe)
                return LyXRC::getDescription(LyXRC::RC_SERVERPIPE);
        if (ob == dialog_->input_path_prefix)
-               return _("Specify those directories which should be"
-                        "prepended to the PATH environment variable. "
-                        "Use the OS native format.");
+               return LyXRC::getDescription(LyXRC::RC_PATH_PREFIX);
        return string();
 }
 
index db2c8c12f8fff7eff2386e3f5acb9af55a499346..96350ce76088888b54b4dc1a2ee445ef013a5e69 100644 (file)
@@ -2205,6 +2205,9 @@ string const LyXRC::getDescription(LyXRCTags tag)
                break;
 
        case RC_PATH_PREFIX:
+               str = _("Specify those directories which should be "
+                        "prepended to the PATH environment variable. "
+                        "Use the OS native format.");
                break;
 
        case RC_PERS_DICT: