~ubuntu-branches/ubuntu/precise/kdewebdev-kde4/precise

« back to all changes in this revision

Viewing changes to klinkstatus/src/engine/searchmanageragent.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Thomas, Richard Birnie, Jonathan Thomas
  • Date: 2008-11-26 19:53:39 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20081126195339-ngaj5wb31dgthwjh
Tags: 4:4.1.80-0ubuntu1
[ Richard Birnie ]
* New upstream release:
  - Updated build-deps kdelibs5-dev, kdepimlibs5-dev, cmake

[ Jonathan Thomas ]
* Created debian/not-installed, added the kommander headers we don't install
  to it

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*  This file is part of the KDE project
2
 
    Copyright (C) 2008 Paulo Moura Guedes <moura@kdewedev.org>
3
 
 
4
 
    This library is free software; you can redistribute it and/or
5
 
    modify it under the terms of the GNU Library General Public
6
 
    License as published by the Free Software Foundation; either
7
 
    version 2 of the License, or (at your option) any later version.
8
 
 
9
 
    This library is distributed in the hope that it will be useful,
10
 
    but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 
    Library General Public License for more details.
13
 
 
14
 
    You should have received a copy of the GNU Library General Public License
15
 
    along with this library; see the file COPYING.LIB.  If not, write to
16
 
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17
 
    Boston, MA 02110-1301, USA.
18
 
*/
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2008 by Paulo Moura Guedes                              *
 
3
 *   moura@kdewebdev.org                                                   *
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU General Public License as published by  *
 
7
 *   the Free Software Foundation; either version 2 of the License, or     *
 
8
 *   (at your option) any later version.                                   *
 
9
 *                                                                         *
 
10
 *   This program is distributed in the hope that it will be useful,       *
 
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
 *   GNU General Public License for more details.                          *
 
14
 *                                                                         *
 
15
 *   You should have received a copy of the GNU General Public License     *
 
16
 *   along with this program; if not, write to the                         *
 
17
 *   Free Software Foundation, Inc.,                                       *
 
18
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
 
19
 ***************************************************************************/
19
20
 
20
21
#include "searchmanageragent.h"
21
22
 
110
111
    
111
112
    connect(d->searchManager, SIGNAL(signalSearchFinished(SearchManager*)),
112
113
            this, SLOT(slotExportSearchFinished(SearchManager*)));
 
114
    connect(d->searchManager, SIGNAL(signalSearchFinished(SearchManager*)),
 
115
            this, SIGNAL(signalSearchFinished(SearchManager*)));
113
116
 
114
117
    d->searchManager->startSearch();
115
118
}