~ubuntu-branches/ubuntu/utopic/kde4libs/utopic

« back to all changes in this revision

Viewing changes to kfile/kfilefiltercombo.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Kolberg
  • Date: 2012-03-03 00:25:28 UTC
  • mfrom: (1.14.15)
  • Revision ID: package-import@ubuntu.com-20120303002528-chhwyfluldkicy5k
Tags: 4:4.8.1-0ubuntu1
* New upstream release
  - Update symbol files

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
{
60
60
    setTrapReturnKey( true );
61
61
    setInsertPolicy(QComboBox::NoInsert);
62
 
    connect( this, SIGNAL( activated( int )), this, SIGNAL( filterChanged() ));
63
 
    connect( this, SIGNAL( returnPressed() ), this, SIGNAL( filterChanged() ));
64
 
    connect( this, SIGNAL( filterChanged() ), SLOT( _k_slotFilterChanged() ));
 
62
    connect( this, SIGNAL(activated(int)), this, SIGNAL(filterChanged()));
 
63
    connect( this, SIGNAL(returnPressed()), this, SIGNAL(filterChanged()));
 
64
    connect( this, SIGNAL(filterChanged()), SLOT(_k_slotFilterChanged()));
65
65
    d->m_allTypes = false;
66
66
}
67
67