Hi there. Maybe this was already asked but since we added this commit to our source my problem starte:

http://gitorious.org/chakra/tribe/co...703bc04c0ab56b

It seems we disabled installation of bundles and pkgs completely. Even in konversation this check is not used for over one year:

http://gitorious.com/konversation/ko...commit/9ad4111

Now I found some in qt rev:

http://doc.qt.nokia.com/4.7-snapshot...ssibility-enum

... still don't get it right:

Qt Code:
  1. ...
  2. #include <QNetworkAccessManager>
  3. ...
  4. if (0 == QNetworkAccessManager::NotAccessible) {
  5. QString completeMessage = i18n("Sorry, you have no internet connection at the moment \n"
  6. "Will stop bundle(s) installation now");
  7.  
  8. KDialog *dialog = new KDialog(this, Qt::FramelessWindowHint);
  9. dialog->setButtons(KDialog::Ok);
  10. dialog->setModal(true);
  11. bool retbool;
  12.  
  13. KMessageBox::createKMessageBox(dialog, QMessageBox::Warning, completeMessage,
  14. QStringList(), QString(), &retbool, KMessageBox::Notify);
  15. return;
  16. }
To copy to clipboard, switch view to plain text mode 
Has anybody an idea?