Andre Poenitz wrote:
On Fri, Apr 06, 2007 at 07:08:39AM +0200, Andre Poenitz wrote:
On Thu, Apr 05, 2007 at 10:18:08PM +0200, Abdelrazak Younes wrote:
Georg Baum wrote:
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[] = {
Why not QString to begin with? The only use of 'delim' in the code
below is in a conversion to QString.
Another point: As all the delimiters are unicode characters there are no
pre-computed pixmaps needed at all. Would have the nice side effect that
line thickness is consistent.
One question George, I've found this page which nicely map TeX
characters to their unicode counterparts:
http://www.cl.cam.ac.uk/~mgk25/ucs/examples/TeX.txt
Shall I put the unicode characters in the source file as-is or shall I
use the unicode hexadecimal codepoint instead?
Abdel.