From d7743f52d37979b3a3f95e8e85fdaad742e1f3c1 Mon Sep 17 00:00:00 2001 From: zecke Date: Fri, 10 Sep 2004 11:08:38 +0000 Subject: Add some gcc vodoo magic to mark the method as unused __attribute__((unused)) --- (limited to 'library/qpemessagebox.cpp') diff --git a/library/qpemessagebox.cpp b/library/qpemessagebox.cpp index bf03d31..c38828a 100644 --- a/library/qpemessagebox.cpp +++ b/library/qpemessagebox.cpp @@ -23,7 +23,14 @@ #include -static void never_called_tr_function_um_libqpe_ts_etwas_unter_zu_jubeln() { +#ifdef Q_OS_MACX + #define ATTRIBUTE_UNUSED +#else + #define ATTRIBUTE_UNUSED __attribute__((unused)) +#endif + +static void never_called_tr_function_um_libqpe_ts_etwas_unter_zu_jubeln() ATTRIBUTE_UNUSED; +static void never_called_tr_function_um_libqpe_ts_etwas_unter_zu_jubeln() { (void)QMessageBox::tr("Yes"); (void)QMessageBox::tr("No"); } -- cgit v0.9.0.2