projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1841f07
)
Remove pointless case insensitivity
author
Julian Smart
<julian@anthemion.co.uk>
Tue, 20 Sep 2011 20:03:42 +0000
(20:03 +0000)
committer
Julian Smart
<julian@anthemion.co.uk>
Tue, 20 Sep 2011 20:03:42 +0000
(20:03 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69168
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
src/richtext/richtextstyles.cpp
patch
|
blob
|
blame
|
history
diff --git
a/src/richtext/richtextstyles.cpp
b/src/richtext/richtextstyles.cpp
index c0cc55761f741c5c655a2e6a3955681f541550dd..ef62442eaf5a6ec6616c6294f9f03e0b02675d48 100644
(file)
--- a/
src/richtext/richtextstyles.cpp
+++ b/
src/richtext/richtextstyles.cpp
@@
-357,7
+357,7
@@
wxRichTextStyleDefinition* wxRichTextStyleSheet::FindStyle(const wxList& list, c
for (wxList::compatibility_iterator node = list.GetFirst(); node; node = node->GetNext())
{
wxRichTextStyleDefinition* def = (wxRichTextStyleDefinition*) node->GetData();
- if (def->GetName()
.Lower() == name.Lower()
)
+ if (def->GetName()
== name
)
return def;
}