When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.
Index: D:/Devel/CodeBlocks/trunk/src/src/main.cpp===================================================================--- D:/Devel/CodeBlocks/trunk/src/src/main.cpp (revision 1886)+++ D:/Devel/CodeBlocks/trunk/src/src/main.cpp (working copy)@@ -1104,7 +1104,9 @@ default: { cbMimePlugin* plugin = Manager::Get()->GetPluginManager()->GetMIMEHandlerForFile(filename);- return plugin && plugin->OpenFile(filename) == 0;+ bool res = plugin && plugin->OpenFile(filename) == 0;+ if (res) AddToRecentFilesHistory(filename);+ return res; } } return true;