projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fixed stray _T()s
[wxWidgets.git]
/
src
/
common
/
resource.cpp
diff --git
a/src/common/resource.cpp
b/src/common/resource.cpp
index e012fd8929013c6bf1397bec481b1517ae2bc58a..782e63157c09d86f22a605006aad24080d89cb5b 100644
(file)
--- a/
src/common/resource.cpp
+++ b/
src/common/resource.cpp
@@
-1484,8
+1484,8
@@
wxFont wxResourceInterpretFontSpec(wxExpr *expr)
if (faceNameExpr)
faceName = faceNameExpr->StringValue();
if (faceNameExpr)
faceName = faceNameExpr->StringValue();
- wxFont font(point, family, style, weight, (underline != 0), faceName);
-
return font
;
+ return *wxTheFontList->FindOrCreateFont(point, family, style, weight,
+
(underline != 0), faceName)
;
}
// Separate file for the remainder of this, for BC++/Win16
}
// Separate file for the remainder of this, for BC++/Win16