summaryrefslogtreecommitdiff
path: root/libopie2/opiecore
authoreilers <eilers>2005-03-23 08:31:19 (UTC)
committer eilers <eilers>2005-03-23 08:31:19 (UTC)
commit7d82b94d669746cac36dcabf026428bdc9286c72 (patch) (unidiff)
treee9b0f51426e8fedee8303b3b794d7c7d18188bd5 /libopie2/opiecore
parent2f6d550d6e379d84aacbb01c46b10c5b6462a59b (diff)
downloadopie-7d82b94d669746cac36dcabf026428bdc9286c72.zip
opie-7d82b94d669746cac36dcabf026428bdc9286c72.tar.gz
opie-7d82b94d669746cac36dcabf026428bdc9286c72.tar.bz2
Add debug output to help developer to find a very silly bug, which takes
a lot of time to fix..
Diffstat (limited to 'libopie2/opiecore') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/oapplicationfactory.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/libopie2/opiecore/oapplicationfactory.h b/libopie2/opiecore/oapplicationfactory.h
index 8516565..8cb0ddd 100644
--- a/libopie2/opiecore/oapplicationfactory.h
+++ b/libopie2/opiecore/oapplicationfactory.h
@@ -56,2 +56,4 @@
56 56
57#include <opie2/odebug.h>
58
57namespace Opie { 59namespace Opie {
@@ -130,4 +132,9 @@ struct OApplicationFactory : public ApplicationInterface {
130 return new Product(parent, name, f ); 132 return new Product(parent, name, f );
131 else 133 else{
134 odebug << "Application Name = " << appName.latin1() << oendl;
135 odebug << "ProductName = " << Product::appName().latin1() << oendl;
136 odebug << "The application name is not equal to the product name!" << oendl;
137 odebug << "Please compare TARGET entry in the project file (*.pro) and the call of the OApplicationFactory< productName >" << oendl;
132 return 0l; 138 return 0l;
139 }
133 } 140 }