From a380c9a877817f0df6894fe9ab88b0b3c310cb55 Mon Sep 17 00:00:00 2001 From: David Capello Date: Tue, 15 Dec 2015 17:07:13 -0300 Subject: [PATCH] Add possibility to create an empty LinkLabel --- src/ui/link_label.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/link_label.h b/src/ui/link_label.h index 11eee6178..070d24f6d 100644 --- a/src/ui/link_label.h +++ b/src/ui/link_label.h @@ -17,7 +17,7 @@ namespace ui { class LinkLabel : public CustomLabel { public: - LinkLabel(const std::string& urlOrText); + LinkLabel(const std::string& urlOrText = ""); LinkLabel(const std::string& url, const std::string& text); const std::string& getUrl() const { return m_url; }