~ubuntu-branches/ubuntu/lucid/lastfm/lucid

« back to all changes in this revision

Viewing changes to src/wizardselectpluginpage.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2007-12-31 09:49:54 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20071231094954-ix1amvcsj9pk61ya
Tags: 1:1.4.1.57486.dfsg-1ubuntu1
* Merge from Debian unstable (LP: #180254), remaining changes:
  - debian/rules;
    - Added dh_icons
  - Modify Maintainer value to match Debian-Maintainer-Field Spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 *   You should have received a copy of the GNU General Public License     *
17
17
 *   along with this program; if not, write to the                         *
18
18
 *   Free Software Foundation, Inc.,                                       *
19
 
 *   51 Franklin Steet, Fifth Floor, Boston, MA  02111-1307, USA.          *
 
19
 *   51 Franklin Steet, Fifth Floor, Boston, MA  02110-1301, USA.          *
20
20
 ***************************************************************************/
21
21
 
22
22
#include "wizardselectpluginpage.h"
32
32
******************************************************************************/
33
33
WizardSelectPluginPage::WizardSelectPluginPage(
34
34
    SimpleWizard*   wizard) :
35
 
        QWidget(wizard)
 
35
        QWidget( wizard )
36
36
{
37
 
    ui.setupUi(this);
 
37
    ui.setupUi( this );
38
38
 
39
39
    // Hook up widget signals to our slots
40
 
    connect(ui.addButton,  SIGNAL(clicked()),
41
 
            this,          SLOT  (addPlayer()));
42
 
    connect(ui.pluginList, SIGNAL(itemChanged(QListWidgetItem*)),
43
 
            this,          SLOT  (pageTouched()));
 
40
    connect(ui.addButton,  SIGNAL( clicked() ),
 
41
            this,          SLOT  ( addPlayer()) );
 
42
    connect(ui.pluginList, SIGNAL( itemChanged( QListWidgetItem* ) ),
 
43
            this,          SLOT  ( pageTouched()) );
44
44
 
45
 
    wizard->enableNext(true);
46
 
    wizard->enableBack(false);
 
45
    wizard->enableNext( true );
 
46
    wizard->enableBack( false );
47
47
 
48
48
    m_Wizard = wizard;
49
49
}