~ubuntu-branches/debian/experimental/smplayer/experimental

« back to all changes in this revision

Viewing changes to src/playlistpreferences.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Maia Kozheva
  • Date: 2009-01-03 17:08:06 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090103170806-eodntb2slv6g2pb6
Tags: 0.6.6-0ubuntu1
* The "just before FF" release.
* New upstream release.
* debian/control: Bumped Standards-Version to 3.8.0.
* debian/copyright: Changed (C) to © to fix Lintian warning.

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
        return autosave_on_exit_check->isChecked();
67
67
}
68
68
 
 
69
void PlaylistPreferences::setPlayFilesFromStart(bool b) {
 
70
        play_from_start_check->setChecked(b);
 
71
}
 
72
 
 
73
bool PlaylistPreferences::playFilesFromStart() {
 
74
        return play_from_start_check->isChecked();
 
75
}
 
76
 
69
77
QSize PlaylistPreferences::sizeHint () const {
70
78
        return QSize(580,200);
71
79
}