~ubuntu-branches/ubuntu/maverick/kdemultimedia/maverick-proposed

« back to all changes in this revision

Viewing changes to juk/playlist.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2010-06-26 02:22:25 UTC
  • mfrom: (1.2.45 upstream)
  • Revision ID: james.westby@ubuntu.com-20100626022225-omfadqnrsdbinnnu
Tags: 4:4.4.90-0ubuntu1
* New upstream rc release
  - Bump kde-sc-dev-latest to 4.4.90
  - Add not-installed file
  - Update KUBUNTU-DEBIAN-DIFFERENCES
  - Update symbol file and confirmed on i386 amd64
  - Bump library version in rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
     * This constructor should generally only be used either by the cache
66
66
     * restoration methods or by subclasses that want to handle calls to
67
67
     * PlaylistCollection::setupPlaylist() differently.
 
68
     *
 
69
     * @param extraColumns is used to preallocate columns for subclasses that
 
70
     * need them (since extra columns are assumed to start from 0). extraColumns
 
71
     * should be equal to columnOffset() (we can't use columnOffset until the
 
72
     * ctor has run).
68
73
     */
69
 
    Playlist(PlaylistCollection *collection, bool delaySetup);
 
74
    Playlist(PlaylistCollection *collection, bool delaySetup, int extraColumns = 0);
70
75
 
71
76
    virtual ~Playlist();
72
77