commit 803d85bea18f9469a88374e9e7d1b4a08160cbec
Author: Utkarsh Ayachit <utkarsh.ayachit@kitware.com>
Date:   Fri May 25 23:31:20 2012 -0400

    Skipping warning messages seen in Ubuntu.
    
    We're getting warning message on Ubuntu. Skipping these.
    
    Change-Id: I70c474aa2d6490327f34eb1e4440dbf55db91007

diff --git a/Qt/Core/pqOutputWindow.cxx b/Qt/Core/pqOutputWindow.cxx
index 82376f5..c6f02d9 100644
--- a/Qt/Core/pqOutputWindow.cxx
+++ b/Qt/Core/pqOutputWindow.cxx
@@ -87,7 +87,7 @@ void pqOutputWindow::onDisplayWarningText(const QString& text)
 {
   if (
     text.contains("QEventDispatcherUNIX::unregisterTimer", Qt::CaseSensitive) ||
-    text.contains("looking for 'HistogramView") || 
+    text.contains("looking for 'HistogramView") ||
     text.contains("(looking for 'XYPlot") ||
     text.contains("Unrecognised OpenGL version")
     )
@@ -127,8 +127,11 @@ void pqOutputWindow::onDisplayGenericWarningText(const QString& text)
 void pqOutputWindow::onDisplayErrorText(const QString& text)
 {
   if (
-    text.contains("Unrecognised OpenGL version")
-  )
+    text.contains("Unrecognised OpenGL version") ||
+/* Skip DBusMenuExporterPrivate errors. These, I suspect, are due to
+     * repeated menu actions in the menus. */
+    text.contains("DBusMenuExporterPrivate") ||
+    text.contains("DBusMenuExporterDBus")  )
     {
     return;
     }
