summaryrefslogtreecommitdiff
path: root/src/webpluginfactory.cpp
diff options
context:
space:
mode:
authorPierre Rossi <pierre.rossi@gmail.com>2011-07-28 11:04:07 +0200
committerAndrea Diamantini <adjam7@gmail.com>2011-07-28 11:04:07 +0200
commite9770b468474dbb1e2774d76b5309d729f35f4b8 (patch)
tree04c1056aa45f8e823ba398efbf68a3c99208fc58 /src/webpluginfactory.cpp
parentMerge branch 'HOOKS' (diff)
downloadrekonq-e9770b468474dbb1e2774d76b5309d729f35f4b8.tar.xz
Introducing ASSERT_NOT_REACHED
In a similar fashion as WebKit, this might make those cases where we don't expect to go more obvious in debug builds. I also took the liberty to revisit a lot of switch statements but it could potentially be used elsewhere Reviewed-by: andrea
Diffstat (limited to 'src/webpluginfactory.cpp')
-rw-r--r--src/webpluginfactory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webpluginfactory.cpp b/src/webpluginfactory.cpp
index 0a47aef8..d4a1bfe1 100644
--- a/src/webpluginfactory.cpp
+++ b/src/webpluginfactory.cpp
@@ -83,7 +83,7 @@ QObject *WebPluginFactory::create(const QString &mimeType,
return 0;
default:
- kDebug() << "oh oh.. this should NEVER happen..";
+ ASSERT_NOT_REACHED("oh oh.. this should NEVER happen..");
break;
}