Fixed several warning messages that were printed when launching KDevAssistant. This resolves bug 1971.

pull/1/head
Michele Calgaro 10 years ago
parent 785c405d8f
commit 5319482782

@ -43,7 +43,7 @@ IndexView::IndexView(DocumentationWidget *parent, const char *name)
{
TQVBoxLayout *l = new TQVBoxLayout(this, 0, 0);
TQHBoxLayout *hl = new TQHBoxLayout(this, 0, 0);
TQHBoxLayout *hl = new TQHBoxLayout(0);
m_edit = new KLineEdit(this);
hl->addWidget(new TQLabel(m_edit, i18n("&Look for:"), this));
hl->addWidget(m_edit);

@ -54,7 +54,7 @@ FileSelectorPart::FileSelectorPart(TQObject *parent, const char *name, const TQS
m_filetree->readConfig( instance()->config(), "fileselector" );
m_newFileAction = new TDEAction(i18n("New File..."), CTRL+ALT+SHIFT+Key_N, this, TQT_SLOT(newFile()), this);
m_newFileAction = new TDEAction(i18n("New File..."), CTRL+ALT+SHIFT+Key_N, this, TQT_SLOT(newFile()), this, "new_file");
}
FileSelectorPart::~FileSelectorPart()

@ -95,7 +95,7 @@ int main(int argc, char *argv[])
app.processEvents();
TQObject::connect(PluginController::getInstance(), TQT_SIGNAL(loadingPlugin(const TQString &)),
splash, TQT_SLOT(showMessage(const TQString &)));
splash, TQT_SLOT(message(const TQString &)));
if (splash) splash->message( i18n( "Loading Settings" ) );
TopLevel::getInstance()->loadSettings();

Loading…
Cancel
Save