From: Tasuku Suzuki Date: Sun, 20 May 2012 12:38:16 +0000 (+0900) Subject: Fix QtCore compilation for -qconfig large X-Git-Tag: 071012110112~804 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4830bcc9626ba285257aa170922360b6207b4261;p=profile%2Fivi%2Fqtbase.git Fix QtCore compilation for -qconfig large Q_UNUSED(encoding) line removed because the variable is not declared. translate() removed because the function is previously implemented. Change-Id: I24da0105d72635ea19b26439776416655f3213df Reviewed-by: Oswald Buddenhagen --- diff --git a/src/corelib/kernel/qcoreapplication.h b/src/corelib/kernel/qcoreapplication.h index f15af6c..555686f 100644 --- a/src/corelib/kernel/qcoreapplication.h +++ b/src/corelib/kernel/qcoreapplication.h @@ -216,16 +216,8 @@ inline bool QCoreApplication::sendSpontaneousEvent(QObject *receiver, QEvent *ev #ifdef QT_NO_TRANSLATION inline QString QCoreApplication::translate(const char *, const char *sourceText, const char *, int) { - Q_UNUSED(encoding) return QString::fromUtf8(sourceText); } -#if QT_DEPRECATED_SINCE(5, 0) -QT_DEPRECATED inline QString QCoreApplication::translate(const char *, const char *sourceText, const char *, Encoding encoding, int) -{ - Q_UNUSED(encoding) - return QString::fromUtf8(sourceText); -} -#endif #endif #define Q_DECLARE_TR_FUNCTIONS(context) \