Am Donnerstag, 5. April 2007 14:12 schrieb [EMAIL PROTECTED]: http://www.lyx.org/trac/file/lyx-devel/trunk/src/frontends/qt4/QDelimiterDialog.C?rev=17731 > ============================================================================== > --- lyx-devel/trunk/src/frontends/qt4/QDelimiterDialog.C (original) > +++ lyx-devel/trunk/src/frontends/qt4/QDelimiterDialog.C Thu Apr 5 14:12:07 2007 > @@ -31,7 +31,7 @@ > > namespace { > > -char const * delim[] = { > +string const delim[] = { > "(", ")", "{", "}", "[", "]", > "lceil", "rceil", "lfloor", "rfloor", "langle", "rangle", > "uparrow", "Uparrow", "downarrow", "Downarrow", > @@ -96,39 +96,41 @@
Why this change? The standard idiom in LyX for tables like this is char const * const bla[] = { "a", "b", "c", 0}; (or "" instead of the 0). These two variants should be unified actually, you should not introduce a third one. Georg