]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/forms_gettext.C
remove defaults stuff, let Qt handle no toolbar
[lyx.git] / src / frontends / xforms / forms_gettext.C
1 /**
2  * \file forms_gettext.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Angus Leeming
7  *
8  * Full author contact details are available in file CREDITS
9  */
10 #include <config.h>
11
12
13 #include "forms_gettext.h"
14 #include "support/lstrings.h"
15
16 // Extract shortcut from "<identifier>|<shortcut>" string
17 string const scex(string const & str)
18 {
19         return split(str, '|');
20 }
21
22
23 // Extract identifier from "<identifier>|<shortcut>" string
24 string const idex(string const & str)
25 {
26         string identifier;
27         split(str, identifier, '|');
28         return identifier;
29 }