|
|
Subject: kdeextragear-2/kst/kst - msg#00315
List: kde.kst
CVS commit by arwalker:
Make sum and int a little more legible in the code.
M +2 -1 kstlabel.cpp 1.55
--- kdeextragear-2/kst/kst/kstlabel.cpp #1.54:1.55
@@ -268,5 +268,6 @@ void KstLabel::draw(QPainter &p, int px,
{"\\Psi", "Y"}, {"\\psi", "y"},
{"\\Zeta", "Z"}, {"\\zeta", "z"},
- {"\\sum", "ï"}, {"\\int", "ï"}
+ {"\\sum", QChar(229)},
+ {"\\int", QChar(242)},
};
static const int N_GREEK = sizeof( GC ) / sizeof( GreekCharType );
Was this page helpful?
Thread at a glance:
Previous Message by Date:
click to view message preview
kdeextragear-2/kst/kst
CVS commit by arwalker:
Correctly display omicron, upsilon, xi and theta.
M +4 -0 kstlabel.cpp 1.54
--- kdeextragear-2/kst/kst/kstlabel.cpp #1.53:1.54
@@ -257,4 +257,5 @@ void KstLabel::draw(QPainter &p, int px,
{"\\Mu", "M"}, {"\\mu", "m"},
{"\\Nu", "N"}, {"\\nu", "n"},
+ {"\\Omicron", "O"}, {"\\omicron", "o"},
{"\\Pi", "P"}, {"\\pi", "p"},
{"\\Theta", "Q"}, {"\\theta", "q"},
@@ -262,5 +263,7 @@ void KstLabel::draw(QPainter &p, int px,
{"\\Sigma", "S"}, {"\\sigma", "s"},
{"\\Tau", "T"}, {"\\tau", "t"},
+ {"\\Upsilon", "U"}, {"\\upsilon", "u"},
{"\\Omega", "W"}, {"\\omega", "w"},
+ {"\\Xi", "X"}, {"\\xi", "x"},
{"\\Psi", "Y"}, {"\\psi", "y"},
{"\\Zeta", "Z"}, {"\\zeta", "z"},
@@ -331,4 +334,5 @@ void KstLabel::draw(QPainter &p, int px,
processedText.replace("\\t", "\t"); // \\t doesn't get evaluated properly
FIXME
processedText.replace("\tau", "\\tau"); // put back the mistakes caused by
the hack above
+ processedText.replace("\theta", "\\theta"); // put back the mistakes caused
by the hack above
if (doScalarReplacement) {
Next Message by Date:
click to view message preview
[Bug 95412] Datamode no longer working when scrolling
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=95412
arwalker sumusltd com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
Resolution|INVALID |
------- Additional Comments From arwalker sumusltd com 2004-12-18 23:02 -------
Not a duplicate post.
Previous Message by Thread:
click to view message preview
kdeextragear-2/kst/kst
CVS commit by arwalker:
Correctly display omicron, upsilon, xi and theta.
M +4 -0 kstlabel.cpp 1.54
--- kdeextragear-2/kst/kst/kstlabel.cpp #1.53:1.54
@@ -257,4 +257,5 @@ void KstLabel::draw(QPainter &p, int px,
{"\\Mu", "M"}, {"\\mu", "m"},
{"\\Nu", "N"}, {"\\nu", "n"},
+ {"\\Omicron", "O"}, {"\\omicron", "o"},
{"\\Pi", "P"}, {"\\pi", "p"},
{"\\Theta", "Q"}, {"\\theta", "q"},
@@ -262,5 +263,7 @@ void KstLabel::draw(QPainter &p, int px,
{"\\Sigma", "S"}, {"\\sigma", "s"},
{"\\Tau", "T"}, {"\\tau", "t"},
+ {"\\Upsilon", "U"}, {"\\upsilon", "u"},
{"\\Omega", "W"}, {"\\omega", "w"},
+ {"\\Xi", "X"}, {"\\xi", "x"},
{"\\Psi", "Y"}, {"\\psi", "y"},
{"\\Zeta", "Z"}, {"\\zeta", "z"},
@@ -331,4 +334,5 @@ void KstLabel::draw(QPainter &p, int px,
processedText.replace("\\t", "\t"); // \\t doesn't get evaluated properly
FIXME
processedText.replace("\tau", "\\tau"); // put back the mistakes caused by
the hack above
+ processedText.replace("\theta", "\\theta"); // put back the mistakes caused
by the hack above
if (doScalarReplacement) {
Next Message by Thread:
click to view message preview
kdeextragear-2/kst/kst
CVS commit by staikos:
fix crash in equation parser, and add more error messages. Sometimes we get a
bit confused on errors and give an error that isn't entirely true, but it's
really not so bad.
M +1 -1 eparse-eh.cpp 1.4
M +850 -1032 eparse.c 1.15
M +26 -35 eparse.h 1.12
M +8 -1 eparse.y 1.15
|
|