summaryrefslogtreecommitdiff
path: root/plugins/Popup/src/formula.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Popup/src/formula.h')
-rw-r--r--plugins/Popup/src/formula.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Popup/src/formula.h b/plugins/Popup/src/formula.h
index 7be33d1d23..a73908dd77 100644
--- a/plugins/Popup/src/formula.h
+++ b/plugins/Popup/src/formula.h
@@ -79,7 +79,7 @@ private:
int eval_atom(TCHAR *&s, Args *args, bool *vars) const;
public:
- Formula() :m_str(mir_tstrdup(_T(""))) {}
+ Formula() :m_str(mir_tstrdup(L"")) {}
Formula(TCHAR *s) :m_str(mir_tstrdup(s)) {}
~Formula() { mir_free(m_str); }
void set(TCHAR *s){ mir_free(m_str); m_str = mir_tstrdup(s); }