summaryrefslogtreecommitdiff
path: root/plugins/!NotAdopted/HistoryStats/column_rank.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/!NotAdopted/HistoryStats/column_rank.cpp')
-rw-r--r--plugins/!NotAdopted/HistoryStats/column_rank.cpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/plugins/!NotAdopted/HistoryStats/column_rank.cpp b/plugins/!NotAdopted/HistoryStats/column_rank.cpp
deleted file mode 100644
index ae44689be9..0000000000
--- a/plugins/!NotAdopted/HistoryStats/column_rank.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-#include "_globals.h"
-#include "column_rank.h"
-
-/*
- * ColRank
- */
-
-void ColRank::impl_outputRenderHeader(ext::ostream& tos, int row, int rowSpan) const
-{
- if (row == 1)
- {
- writeRowspanTD(tos, getCustomTitle(i18n(muT("Rank")), i18n(muT("Rank"))), row, 1, rowSpan);
- }
-}
-
-void ColRank::impl_outputBegin()
-{
- m_nNextRank = 1;
-}
-
-void ColRank::impl_outputRenderRow(ext::ostream& tos, const Contact& contact, DisplayType display)
-{
- if (display == asContact)
- {
- tos << muT("<td class=\"num\">")
- << utils::htmlEscape(ext::str(ext::kformat(i18n(muT("#{rank}."))) % muT("#{rank}") * (m_nNextRank++)))
- << muT("</td>") << ext::endl;
- }
- else
- {
- tos << muT("<td>&nbsp;</td>");
- }
-}