]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blobdiff - src/windows/BrowserWindow.cpp
Replace the for loops in CookiesDialog with while loops. https://redmine.stoutner...
[PrivacyBrowserPC.git] / src / windows / BrowserWindow.cpp
index 4edb35ac4613bdfd771cc876aaa0c574d63fa2f1..d3800ad8e1674c93b7c54e77c0be5618c62eed6f 100644 (file)
@@ -279,7 +279,7 @@ BrowserWindow::BrowserWindow() : KXmlGuiWindow()
 
 void BrowserWindow::addCookieToList(const QNetworkCookie &newCookie) const
 {
 
 void BrowserWindow::addCookieToList(const QNetworkCookie &newCookie) const
 {
-    qDebug() << "Add cookie:  " << newCookie.toRawForm();
+    //qDebug() << "Add cookie:  " << newCookie.toRawForm();
 
     // Add the new cookie to the list.
     cookieListPointer->push_front(newCookie);
 
     // Add the new cookie to the list.
     cookieListPointer->push_front(newCookie);
@@ -440,7 +440,7 @@ void BrowserWindow::refresh() const
 
 void BrowserWindow::removeCookieFromList(const QNetworkCookie &cookie) const
 {
 
 void BrowserWindow::removeCookieFromList(const QNetworkCookie &cookie) const
 {
-    qDebug() << "Remove cookie:  " << cookie.toRawForm();
+    //qDebug() << "Remove cookie:  " << cookie.toRawForm();
 
     // Remove the cookie from the list.
     cookieListPointer->remove(cookie);
 
     // Remove the cookie from the list.
     cookieListPointer->remove(cookie);