author | tille <tille> | 2003-05-11 19:29:27 (UTC) |
---|---|---|
committer | tille <tille> | 2003-05-11 19:29:27 (UTC) |
commit | 10de2c93dffa16f6d2f1cf72fa20008757c5ef3a (patch) (side-by-side diff) | |
tree | 561f501cf966e1f3ee6c9ce6d76ab9c227e7708a | |
parent | 43c18630840a98aed8deb96b454957c40f0a4344 (diff) | |
download | opie-10de2c93dffa16f6d2f1cf72fa20008757c5ef3a.zip opie-10de2c93dffa16f6d2f1cf72fa20008757c5ef3a.tar.gz opie-10de2c93dffa16f6d2f1cf72fa20008757c5ef3a.tar.bz2 |
colabse applnkitem in case of new search, since it's far to slow...
... I wonder how slow osearch will be on the pda!
-rw-r--r-- | core/pim/osearch/applnksearch.cpp | 8 | ||||
-rw-r--r-- | core/pim/osearch/applnksearch.h | 2 | ||||
-rw-r--r-- | core/pim/osearch/searchgroup.h | 1 |
3 files changed, 9 insertions, 2 deletions
diff --git a/core/pim/osearch/applnksearch.cpp b/core/pim/osearch/applnksearch.cpp index d5b2930..acf650a 100644 --- a/core/pim/osearch/applnksearch.cpp +++ b/core/pim/osearch/applnksearch.cpp @@ -54,2 +54,10 @@ void AppLnkSearch::insertItem( void *rec ) new AppLnkItem( this, (AppLnk*)rec ); } + +void AppLnkSearch::setSearch(QRegExp re) +{ + expanded = false; + setOpen( false ); + SearchGroup::setSearch( re ); +} + diff --git a/core/pim/osearch/applnksearch.h b/core/pim/osearch/applnksearch.h index d88a8ce..6bb7486 100644 --- a/core/pim/osearch/applnksearch.h +++ b/core/pim/osearch/applnksearch.h @@ -28,5 +28,5 @@ public: ~AppLnkSearch(); -protected: + virtual void setSearch(QRegExp); virtual void load(); virtual int search(); diff --git a/core/pim/osearch/searchgroup.h b/core/pim/osearch/searchgroup.h index ebe1193..35949f0 100644 --- a/core/pim/osearch/searchgroup.h +++ b/core/pim/osearch/searchgroup.h @@ -40,5 +40,4 @@ protected: virtual int search() = 0; virtual void insertItem( void* ) = 0; -private: void clearList(); QString _name; |