This is an automated email from the git hooks/post-receive script. gottcode pushed a commit to branch master in repository panel-plugins/xfce4-whiskermenu-plugin.
commit dde745f5f26f85152b5b11e088c8d18c37205a2b Author: Graeme Gott <[email protected]> Date: Sun Dec 27 09:22:55 2015 -0500 Fix limited input length for search actions. (bug #12381) --- panel-plugin/query.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/panel-plugin/query.h b/panel-plugin/query.h index 9970e64..0c1fa75 100644 --- a/panel-plugin/query.h +++ b/panel-plugin/query.h @@ -38,12 +38,12 @@ public: unsigned int match(const std::string& haystack) const; - std::string query() const + const std::string& query() const { return m_query; } - std::string raw_query() const + const std::string& raw_query() const { return m_raw_query; } -- To stop receiving notification emails like this one, please contact the administrator of this repository. _______________________________________________ Xfce4-commits mailing list [email protected] https://mail.xfce.org/mailman/listinfo/xfce4-commits
