summarylogtreecommitdiffstats
path: root/gui_common.h
blob: 0e6932e1ce4b18d9fe38ea66c92f5b1a514e3769 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef GUICOMMON_H
#define GUICOMMON_H

#include "base/str.h"

#include "base/gettext.h"
// Qt requires strings from gettext to be in UTF-8 encoding.
#define _(string) (str::convert(gettext(string), str::localcharset(), "UTF-8").c_str())

#endif