summaryrefslogtreecommitdiffabout
authorzautrix <zautrix>2004-10-22 10:09:10 (UTC)
committer zautrix <zautrix>2004-10-22 10:09:10 (UTC)
commit0af0436b73d0e55d4254aad66fb41efc06d329d1 (patch) (unidiff)
tree397737fa9743c8769d109aab8c6174aea5df1cdb
parenta97485bb2ff1b4f274d9cf0fba9e2f122297deed (diff)
downloadkdepimpi-0af0436b73d0e55d4254aad66fb41efc06d329d1.zip
kdepimpi-0af0436b73d0e55d4254aad66fb41efc06d329d1.tar.gz
kdepimpi-0af0436b73d0e55d4254aad66fb41efc06d329d1.tar.bz2
removed debug output
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--kabc/vcard/VCardEntity.cpp4
-rw-r--r--kaddressbook/kabprefs.cpp1
2 files changed, 2 insertions, 3 deletions
diff --git a/kabc/vcard/VCardEntity.cpp b/kabc/vcard/VCardEntity.cpp
index 2a9e275..81debf4 100644
--- a/kabc/vcard/VCardEntity.cpp
+++ b/kabc/vcard/VCardEntity.cpp
@@ -13,24 +13,25 @@
13 The above copyright notice and this permission notice shall be included in 13 The above copyright notice and this permission notice shall be included in
14 all copies or substantial portions of the Software. 14 all copies or substantial portions of the Software.
15 15
16 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 19 AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20 ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22*/ 22*/
23 23
24#include <qregexp.h> 24#include <qregexp.h>
25#include <qdatetime.h>;
25 26
26#include <VCardDefines.h> 27#include <VCardDefines.h>
27#include <VCardVCardEntity.h> 28#include <VCardVCardEntity.h>
28 29
29using namespace VCARD; 30using namespace VCARD;
30 31
31VCardEntity::VCardEntity() 32VCardEntity::VCardEntity()
32 :Entity() 33 :Entity()
33{ 34{
34 cardList_.setAutoDelete( TRUE ); 35 cardList_.setAutoDelete( TRUE );
35} 36}
36 37
@@ -64,25 +65,24 @@ VCardEntity::operator = (const QCString & s)
64 65
65 bool 66 bool
66VCardEntity::operator == (VCardEntity & x) 67VCardEntity::operator == (VCardEntity & x)
67{ 68{
68 x.parse(); 69 x.parse();
69 return false; 70 return false;
70} 71}
71 72
72VCardEntity::~VCardEntity() 73VCardEntity::~VCardEntity()
73{ 74{
74} 75}
75 76
76#include <qdatetime.h>;
77 void 77 void
78VCardEntity::_parse() 78VCardEntity::_parse()
79{ 79{
80#if 0 80#if 0
81 QTime tim; 81 QTime tim;
82 tim.start(); 82 tim.start();
83 int num = 0; 83 int num = 0;
84 // old code 84 // old code
85 vDebug("parse"); 85 vDebug("parse");
86 QCString s(strRep_); 86 QCString s(strRep_);
87 87
88 int i = s.find(QRegExp("BEGIN:VCARD", false)); 88 int i = s.find(QRegExp("BEGIN:VCARD", false));
@@ -131,25 +131,25 @@ VCardEntity::_parse()
131 } 131 }
132 if ( i <= len ) { 132 if ( i <= len ) {
133 ++num; 133 ++num;
134 char* dat = strRep_.data()+start; 134 char* dat = strRep_.data()+start;
135 VCard * v = new VCard( QCString ( dat,i-start ) ); 135 VCard * v = new VCard( QCString ( dat,i-start ) );
136 start = i; 136 start = i;
137 cardList_.append(v); 137 cardList_.append(v);
138 v->parse(); 138 v->parse();
139 } 139 }
140 i+= 11; 140 i+= 11;
141 } 141 }
142#endif 142#endif
143 qDebug("***time %d found %d", tim.elapsed(), num); 143 //qDebug("***time %d found %d", tim.elapsed(), num);
144} 144}
145 145
146 void 146 void
147VCardEntity::_assemble() 147VCardEntity::_assemble()
148{ 148{
149 VCardListIterator it(cardList_); 149 VCardListIterator it(cardList_);
150 150
151 for (; it.current(); ++it) 151 for (; it.current(); ++it)
152 strRep_ += it.current()->asString() + "\r\n"; // One CRLF for luck. 152 strRep_ += it.current()->asString() + "\r\n"; // One CRLF for luck.
153} 153}
154 154
155 VCardList & 155 VCardList &
diff --git a/kaddressbook/kabprefs.cpp b/kaddressbook/kabprefs.cpp
index 4b3ee47..79fff47 100644
--- a/kaddressbook/kabprefs.cpp
+++ b/kaddressbook/kabprefs.cpp
@@ -177,25 +177,24 @@ void KABPrefs::usrReadConfig()
177 line = text.mid( br, nbr - br ); 177 line = text.mid( br, nbr - br );
178 br = nbr+1; 178 br = nbr+1;
179 } 179 }
180 //qDebug("end *%s* ", end.latin1()); 180 //qDebug("end *%s* ", end.latin1());
181 181
182 setLocaleDict( mLocaleDict ); 182 setLocaleDict( mLocaleDict );
183 } else { 183 } else {
184 qDebug("KO: Cannot find translation file %s",fileName.latin1() ); 184 qDebug("KO: Cannot find translation file %s",fileName.latin1() );
185 } 185 }
186 186
187 187
188 } 188 }
189 qDebug("KABPrefs::usrReadConfig********************** ");
190 KPimPrefs::usrReadConfig(); 189 KPimPrefs::usrReadConfig();
191} 190}
192 191
193 192
194/*US 193/*US
195void KABPrefs::usrSetDefaults() 194void KABPrefs::usrSetDefaults()
196{ 195{
197 KPimPrefs::usrSetDefaults(); 196 KPimPrefs::usrSetDefaults();
198} 197}
199 198
200void KABPrefs::usrReadConfig() 199void KABPrefs::usrReadConfig()
201{ 200{