author | tille <tille> | 2003-05-14 16:20:11 (UTC) |
---|---|---|
committer | tille <tille> | 2003-05-14 16:20:11 (UTC) |
commit | 6bc6d8eb1051335e99416f5a8311788b40c7476a (patch) (unidiff) | |
tree | 39b9afa01f5f3061617a494c526ca8b8a2610388 | |
parent | b818d340ce6a9ffe00136f2278192f46c1163ba1 (diff) | |
download | opie-6bc6d8eb1051335e99416f5a8311788b40c7476a.zip opie-6bc6d8eb1051335e99416f5a8311788b40c7476a.tar.gz opie-6bc6d8eb1051335e99416f5a8311788b40c7476a.tar.bz2 |
correct focus and search group order
zecke: take this version for OPIE_BRANCH_0_99
-rw-r--r-- | core/pim/osearch/mainwindow.cpp | 7 | ||||
-rw-r--r-- | core/pim/osearch/olistview.cpp | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/core/pim/osearch/mainwindow.cpp b/core/pim/osearch/mainwindow.cpp index 33a24bc..093ca54 100644 --- a/core/pim/osearch/mainwindow.cpp +++ b/core/pim/osearch/mainwindow.cpp | |||
@@ -78,9 +78,9 @@ MainWindow::MainWindow( QWidget *parent, const char *name, WFlags f ) : | |||
78 | detailsFrame->hide(); | 78 | detailsFrame->hide(); |
79 | 79 | ||
80 | searches.append( new AdressSearch( resultsList, tr("adressbook") ) ); | ||
81 | searches.append( new TodoSearch( resultsList, tr("todo") ) ); | ||
82 | searches.append( new DatebookSearch( resultsList, tr("datebook") ) ); | ||
83 | searches.append( new AppLnkSearch( resultsList, tr("applications") ) ); | 80 | searches.append( new AppLnkSearch( resultsList, tr("applications") ) ); |
84 | searches.append( new DocLnkSearch( resultsList, tr("documents") ) ); | 81 | searches.append( new DocLnkSearch( resultsList, tr("documents") ) ); |
82 | searches.append( new TodoSearch( resultsList, tr("todo") ) ); | ||
83 | searches.append( new DatebookSearch( resultsList, tr("datebook") ) ); | ||
84 | searches.append( new AdressSearch( resultsList, tr("adressbook") ) ); | ||
85 | 85 | ||
86 | makeMenu(); | 86 | makeMenu(); |
@@ -125,4 +125,5 @@ void MainWindow::makeMenu() | |||
125 | addToolBar( searchBar, "Search", QMainWindow::Top, TRUE ); | 125 | addToolBar( searchBar, "Search", QMainWindow::Top, TRUE ); |
126 | QLineEdit *searchEdit = new QLineEdit( searchBar, "seachEdit" ); | 126 | QLineEdit *searchEdit = new QLineEdit( searchBar, "seachEdit" ); |
127 | searchEdit->setFocus(); | ||
127 | searchBar->setHorizontalStretchable( TRUE ); | 128 | searchBar->setHorizontalStretchable( TRUE ); |
128 | searchBar->setStretchableWidget( searchEdit ); | 129 | searchBar->setStretchableWidget( searchEdit ); |
diff --git a/core/pim/osearch/olistview.cpp b/core/pim/osearch/olistview.cpp index f5fe462..06392ba 100644 --- a/core/pim/osearch/olistview.cpp +++ b/core/pim/osearch/olistview.cpp | |||
@@ -20,5 +20,5 @@ OListView::OListView(QWidget *parent, const char *name ) | |||
20 | setRootIsDecorated( true ); | 20 | setRootIsDecorated( true ); |
21 | addColumn(tr("Results")); | 21 | addColumn(tr("Results")); |
22 | 22 | setSorting( -1 ); | |
23 | connect( this, SIGNAL(expanded(QListViewItem*)), SLOT(expand(QListViewItem*))); | 23 | connect( this, SIGNAL(expanded(QListViewItem*)), SLOT(expand(QListViewItem*))); |
24 | } | 24 | } |