|
From: CVS C. to T. <the...@li...> - 2012-02-29 21:28:38
|
Revision: 684
http://themis.svn.sourceforge.net/themis/?rev=684&view=rev
Author: mark_hellegers
Date: 2012-02-29 21:28:29 +0000 (Wed, 29 Feb 2012)
Log Message:
-----------
Made the mimetype comparison case insensitive.
Modified Paths:
--------------
trunk/themis/framework/ThemisTabView.cpp
Modified: trunk/themis/framework/ThemisTabView.cpp
===================================================================
--- trunk/themis/framework/ThemisTabView.cpp 2012-02-29 21:27:56 UTC (rev 683)
+++ trunk/themis/framework/ThemisTabView.cpp 2012-02-29 21:28:29 UTC (rev 684)
@@ -849,7 +849,7 @@
messenger.SendMessage(&message);
}
}
- else if (mimeString == "text/html") {
+ else if (mimeString.ToLower() == "text/html") {
BString filePath = "file://";
filePath += path.Path();
BMessage message(URL_OPEN);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|