[Uml-devel] KDE/kdesdk/umbrello/umbrello
Andi Fischer
andi.fischer at hispeed.ch
Sat Dec 24 00:10:36 UTC 2011
SVN commit 1270309 by fischer:
Krazy2 issues 18 - normalized SIGNAL and SLOT signatures - fixed.
M +4 -1 uml.cpp
--- trunk/KDE/kdesdk/umbrello/umbrello/uml.cpp #1270308:1270309
@@ -227,7 +227,7 @@
{
QAction* fileNew = KStandardAction::openNew(this, SLOT(slotFileNew()), actionCollection());
QAction* fileOpen = KStandardAction::open(this, SLOT(slotFileOpen()), actionCollection());
- fileOpenRecent = KStandardAction::openRecent(this, SLOT(slotFileOpenRecent(const KUrl&)), actionCollection());
+ fileOpenRecent = KStandardAction::openRecent(this, SLOT(slotFileOpenRecent(KUrl)), actionCollection());
QAction* fileSave = KStandardAction::save(this, SLOT(slotFileSave()), actionCollection());
QAction* fileSaveAs = KStandardAction::saveAs(this, SLOT(slotFileSaveAs()), actionCollection());
QAction* fileClose = KStandardAction::close(this, SLOT(slotFileClose()), actionCollection());
@@ -1263,6 +1263,9 @@
slotFileNew();
}
+/**
+ * Slot for showing a print settings dialog.
+ */
bool UMLApp::slotPrintSettings()
{
if (m_printSettings)
More information about the umbrello-devel
mailing list