]> git.lyx.org Git - features.git/blobdiff - src/support/Translator.h
implement --enable-monolithic-{client,frontend-qt4,controllers}. Careful with fronten...
[features.git] / src / support / Translator.h
index dca9ed023c08ee5e752dc3f0f5870c8014926531..58dda551c0158f9242ae704036d997dbdc8f8102 100644 (file)
@@ -65,8 +65,8 @@ public:
                // For explanation see the next find() function.
                typename Map::const_iterator it =
                        std::find_if(map.begin(), map.end(),
-                                    boost::bind(std::equal_to<T1>(),
-                                                boost::bind(&MapPair::first, _1),
+                                    ::boost::bind(std::equal_to<T1>(),
+                                                ::boost::bind(&MapPair::first, _1),
                                                 first)
                                );
 
@@ -94,8 +94,8 @@ public:
                // equal_to(select2nd(pair) , second)
                typename Map::const_iterator it =
                        std::find_if(map.begin(), map.end(),
-                                    boost::bind(std::equal_to<T2>(),
-                                                boost::bind(&MapPair::second, _1),
+                                    ::boost::bind(std::equal_to<T2>(),
+                                                ::boost::bind(&MapPair::second, _1),
                                                 second)
                                );