From 7aecb18f56ac5713a951317b9b7bdcb58244be01 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Peter=20K=C3=BCmmel?= Date: Fri, 23 Apr 2010 12:58:17 +0000 Subject: [PATCH] cmake: remove recursive call, even if it breaks merged builds with GCC, fix linker error on win32 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34280 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/GuiHyperlink.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/frontends/qt4/GuiHyperlink.cpp b/src/frontends/qt4/GuiHyperlink.cpp index 13d9ede9a8..75d93cd8ea 100644 --- a/src/frontends/qt4/GuiHyperlink.cpp +++ b/src/frontends/qt4/GuiHyperlink.cpp @@ -26,7 +26,8 @@ namespace lyx { bool operator==(lyx::docstring & d, char const * c); namespace frontend { - bool operator==(lyx::docstring & d, char const * c); + bool operator==(lyx::docstring & d, char const * c) + { return lyx::operator ==(d, c); } } } #endif -- 2.39.5