~ubuntu-branches/ubuntu/precise/kiten/precise

« back to all changes in this revision

Viewing changes to kanjibrowser/kanjibrowserview.cpp

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2012-04-02 17:58:59 UTC
  • mfrom: (1.1.9)
  • Revision ID: package-import@ubuntu.com-20120402175859-lk4cqo6zzee0fehq
Tags: 4:4.8.2-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
    _currentGradeList << grade;
87
87
  }
88
88
 
89
 
  // Reload our KListWidget widget.
 
89
  // Reload our QListWidget widget.
90
90
  reloadKanjiList();
91
91
}
92
92
 
117
117
    _currentStrokesList << strokes;
118
118
  }
119
119
 
120
 
  // Reload our KListWidget widget.
 
120
  // Reload our QListWidget widget.
121
121
  reloadKanjiList();
122
122
}
123
123
 
271
271
              this,   SLOT( changeGrade( int ) ) );
272
272
  connect( _strokes, SIGNAL( currentIndexChanged( int ) ),
273
273
               this,   SLOT( changeStrokeCount( int ) ) );
274
 
  connect( _kanjiList, SIGNAL( executed( QListWidgetItem* ) ),
 
274
  connect( _kanjiList, SIGNAL( itemClicked( QListWidgetItem* ) ),
275
275
                 this,   SLOT( searchKanji( QListWidgetItem* ) ) );
276
 
  connect( _kanjiList, SIGNAL( executed( QListWidgetItem* ) ),
 
276
  connect( _kanjiList, SIGNAL( itemClicked( QListWidgetItem* ) ),
277
277
           _goToKanjiInfo, SIGNAL( triggered() ) );
278
278
  connect( goToKanjiList, SIGNAL( triggered() ),
279
279
                    this,   SLOT( changeToListPage() ) );