diff options
Diffstat (limited to 'plugins/NewStory/src/history_array.h')
-rw-r--r-- | plugins/NewStory/src/history_array.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/NewStory/src/history_array.h b/plugins/NewStory/src/history_array.h index d56bc7fd2b..3ee5eae9e3 100644 --- a/plugins/NewStory/src/history_array.h +++ b/plugins/NewStory/src/history_array.h @@ -12,8 +12,6 @@ CMStringW TplFormatString(int tpl, MCONTACT hContact, ItemData *item); struct ItemData
{
- MCONTACT hContact;
-
bool m_bSelected, m_bHighlighted;
bool m_bLoaded, m_bIsResult;
bool m_bOfflineFile;
@@ -48,7 +46,7 @@ struct ItemData const char* getUrl() const;
CMStringW formatHtml(const wchar_t *pwszStr = 0);
- CMStringW formatString() { return TplFormatString(getTemplate(), hContact, this); }
+ CMStringW formatString() { return TplFormatString(getTemplate(), dbe.hContact, this); }
CMStringW formatStringEx(wchar_t *sztpl);
inline wchar_t* getWBuf()
|