summaryrefslogtreecommitdiff
path: root/zen/i18n.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/i18n.h')
-rw-r--r--zen/i18n.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/i18n.h b/zen/i18n.h
index 6c050601..cea4340d 100644
--- a/zen/i18n.h
+++ b/zen/i18n.h
@@ -33,7 +33,7 @@ struct TranslationHandler
virtual std::wstring translate(const std::wstring& singular, const std::wstring& plural, int n) = 0;
};
-void setTranslator(TranslationHandler* newHandler = NULL); //takes ownership
+void setTranslator(TranslationHandler* newHandler = nullptr); //takes ownership
TranslationHandler* getTranslator();
std::wstring getThousandsSeparator();
bgstack15