summaryrefslogtreecommitdiffstats
path: root/lib/kformula/contextstyle.cc
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2012-01-13 13:15:14 -0600
committerTimothy Pearson <[email protected]>2012-01-13 13:15:14 -0600
commit735d75d6ce19269dc5faa00abc8f88ff30ce2f23 (patch)
tree4e85ad9cc0479892232125234c6b71c4f17ac611 /lib/kformula/contextstyle.cc
parentb180811d9a814c638032f77aaf02e84a3126328c (diff)
downloadkoffice-735d75d6ce19269dc5faa00abc8f88ff30ce2f23.tar.gz
koffice-735d75d6ce19269dc5faa00abc8f88ff30ce2f23.zip
Fix inadvertent TQt string conversions
This closes Bug 782
Diffstat (limited to 'lib/kformula/contextstyle.cc')
-rw-r--r--lib/kformula/contextstyle.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/kformula/contextstyle.cc b/lib/kformula/contextstyle.cc
index f358b62c..b6067e10 100644
--- a/lib/kformula/contextstyle.cc
+++ b/lib/kformula/contextstyle.cc
@@ -235,7 +235,7 @@ luPixel ContextStyle::getSpace( TextStyle tstyle, SpaceWidth space, double facto
case THIN: return getThinSpace( tstyle, factor );
case MEDIUM: return getMediumSpace( tstyle, factor );
case THICK: return getThickSpace( tstyle, factor );
- case TQUAD: return getQuadSpace( tstyle, factor );
+ case QUAD: return getQuadSpace( tstyle, factor );
}
return 0;
}