Check-in Number:
|
4039 | |
Date: |
2003-Feb-14 10:18:25 (local)
2003-Feb-14 09:18:25 (UTC) |
User: | ms |
Branch: | |
Comment: |
Get rid of double newline, add the synchronize action button to the view
toolbar where it belongs, and remove the separator between the columns and
views selectors. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/as/as-gui/as_assist.cpp 1.104 -> 1.105
--- as_assist.cpp 2003/02/13 21:12:36 1.104
+++ as_assist.cpp 2003/02/14 09:18:25 1.105
@@ -401,7 +401,6 @@
m_pTbarspopup->setItemChecked(nMenuid, true);
nMenuid = m_pTbarspopup->insertItem(trUtf8("&Whats"), this, SLOT(showWhatsbar()));
m_pTbarspopup->setItemChecked(nMenuid, true);
- m_pViewpopup->insertSeparator();
m_pViewpopup->insertItem(trUtf8("&Columns"), m_pColspopup);
nMenuid = m_pColspopup->insertItem(trUtf8("&Status"), this, SLOT(showStatcol()));
m_pColspopup->setItemChecked(nMenuid, true);
@@ -497,6 +496,7 @@
m_pViewtools->setOpaqueMoving(false);
m_pViewtools->setCloseMode(QDockWindow::Never);
m_pRefreshact->addTo(m_pViewtools);
+ m_pSyncact->addTo(m_pViewtools);
// Construct and populate the lonely whatsthis tool bar
m_pWhatstools = new QToolBar("Toolwhats", this, DockTop);
|
|
ossp-pkg/as/as-gui/as_slot.cpp 1.123 -> 1.124
--- as_slot.cpp 2003/02/13 21:50:35 1.123
+++ as_slot.cpp 2003/02/14 09:18:25 1.124
@@ -1711,7 +1711,7 @@
}
catch (const CORBA::Exception &Corbex) {
m_pStatbar->message(trUtf8("Caught CORBA exception: %1").arg(Corbex._repoid()));
- qWarning("Caught CORBA exception: %s\n", Corbex._repoid());
+ qWarning("Caught CORBA exception: %s", Corbex._repoid());
}
catch (...) {
qWarning("Caught unknown exception\n");
|
|