summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kdeui/kaction.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/kdeui/kaction.cpp b/kdeui/kaction.cpp
index 270c00ec4..de8145362 100644
--- a/kdeui/kaction.cpp
+++ b/kdeui/kaction.cpp
@@ -772,9 +772,11 @@ void KAction::unplug( TQWidget *w )
void KAction::plugAccel(KAccel *kacc, bool configurable)
{
+#if 0 //ndef NDEBUG
kdWarning(129) << "KAction::plugAccel(): call to deprecated action." << endl;
kdDebug(129) << kdBacktrace() << endl;
//kdDebug(129) << "KAction::plugAccel( kacc = " << kacc << " ): name \"" << name() << "\"" << endl;
+#endif
if ( d->m_kaccel )
unplugAccel();
@@ -795,7 +797,11 @@ void KAction::plugAccel(KAccel *kacc, bool configurable)
//connect(d->m_kaccel, TQT_SIGNAL(keycodeChanged()), this, TQT_SLOT(slotKeycodeChanged()));
}
else
+ {
+#if 0 //ndef NDEBUG
kdWarning(129) << "KAction::plugAccel( kacc = " << kacc << " ): KAccel object already contains an action name \"" << name() << "\"" << endl; // -- ellis
+#endif
+ }
}
void KAction::unplugAccel()