diff options
author | Francois Andriot <[email protected]> | 2013-08-23 16:04:18 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2013-08-23 16:04:18 +0200 |
commit | c4c5713c94cf62e46a4218860279b048f6aa03e4 (patch) | |
tree | 3e832f960abee8fb43e594bae54a79fe0622bbc1 | |
parent | c7bc8b761bfabd646273589c726cf09e329b8e25 (diff) | |
download | tdeio-apt-c4c5713c94cf62e46a4218860279b048f6aa03e4.tar.gz tdeio-apt-c4c5713c94cf62e46a4218860279b048f6aa03e4.zip |
Fix FTBFS when using --enable-final
-rw-r--r-- | src/apt.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/apt.cpp b/src/apt.cpp index 2489319..8c8f362 100644 --- a/src/apt.cpp +++ b/src/apt.cpp @@ -143,10 +143,10 @@ TQString AptProtocol::make_html_tail(const TQString& note, bool with_form) */ static const TQString - html_form_begin("\n<form action=\"apt:/\" method=\"GET\">\n" + html_form_begin_apt("\n<form action=\"apt:/\" method=\"GET\">\n" "<table class=\"query\">\n"); static const TQString - html_form_end("<tr>\n" + html_form_end_apt("<tr>\n" "\t<td class=\"button\" colspan=\"2\"><input type=\"submit\" value=\"%1\"></td>\n" "</tr>\n" "</table>\n" @@ -197,7 +197,7 @@ TQString AptProtocol::make_html_form() const if (online) stream << "<table class=\"queryform\"><tr><td>\n"; - stream << html_form_begin; + stream << html_form_begin_apt; stream << "<tr><td colspan=\"2\" class=\"title\">" + i18n("Offline search") + "</td></tr>" << endl; stream << make_html_form_line("search", i18n("Package search")); if (ext_form) @@ -206,7 +206,7 @@ TQString AptProtocol::make_html_form() const stream << make_html_form_line("fsearch", i18n("File search")); stream << make_html_form_line("show", i18n("Package info")); } - stream << html_form_end.arg( i18n("Search") ); + stream << html_form_end_apt.arg( i18n("Search") ); if (online) { |