mirror of
https://git.freebsd.org/ports.git
synced 2025-06-06 13:20:32 -04:00
PR: 213195 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D8093
21 lines
588 B
C++
21 lines
588 B
C++
commit 5900b14a2bf367203f6d417bc51b59ab5ecc2129
|
|
Author: Raphael Kubo da Costa <rakuco@FreeBSD.org>
|
|
Date: Sun Mar 2 13:26:18 2014 +0200
|
|
|
|
qt4 immodule: Add missing <clocale> include.
|
|
|
|
* qt4/immodule/plugin.cpp
|
|
- Stop relying on implicit includes that may not always work and
|
|
explicitly include <clocale> for the setlocale(3) call.
|
|
|
|
--- qt4/immodule/plugin.cpp.orig 2013-06-30 04:26:20 UTC
|
|
+++ qt4/immodule/plugin.cpp
|
|
@@ -34,6 +34,8 @@
|
|
|
|
#include "plugin.h"
|
|
|
|
+#include <clocale>
|
|
+
|
|
#include <QtCore/QStringList>
|
|
#include <QtGui/QInputContext>
|
|
#ifdef Q_WS_X11
|