~ubuntu-branches/ubuntu/raring/lmms/raring-proposed

« back to all changes in this revision

Viewing changes to plugins/zynaddsubfx/fltk/FL/Fl_Browser_.H

  • Committer: Charlie Smotherman
  • Date: 2012-12-05 22:08:38 UTC
  • mfrom: (33.1.7 lmms_0.4.13)
  • Revision ID: cjsmo@cableone.net-20121205220838-09pjfzew9m5023hr
* New  Upstream release.
  - Minor tweaking to ZynAddSubFX, CALF, SWH plugins  and Stefan Fendt's RC
    filters.
  - Added UI fixes: Magnentic effect of knobs and Piano-roll fixes
  - Updated German localization and copyright year
* debian/lmms-common.install:
  - added /usr/share/applications so the lmms.desktop file will correctly
    install (LP: #863366)
  - This should also fix the Software Center not displaying lmms in sound
    and video (LP: #824231)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
//
2
 
// "$Id: Fl_Browser_.H 6902 2009-09-27 11:06:56Z matt $"
 
2
// "$Id: Fl_Browser_.H 8275 2011-01-13 22:07:31Z manolo $"
3
3
//
4
4
// Common browser header file for the Fast Light Tool Kit (FLTK).
5
5
//
6
 
// Copyright 1998-2009 by Bill Spitzak and others.
 
6
// Copyright 1998-2010 by Bill Spitzak and others.
7
7
//
8
8
// This library is free software; you can redistribute it and/or
9
9
// modify it under the terms of the GNU Library General Public
138
138
    \param[in] item The item whose label text is returned.
139
139
    \returns The item's text label. (Can be NULL if blank)
140
140
   */
141
 
  virtual const char *item_text(void *item) const { return 0L; }
 
141
  virtual const char *item_text(void *item) const { (void)item; return 0L; }
142
142
  /**
143
143
    This optional method should be provided by the subclass 
144
144
    to efficiently swap browser items \p a and \p b, such as for sorting.
145
145
    \param[in] a,b The two items to be swapped.
146
146
   */
147
 
  virtual void item_swap(void *a,void *b) { }
 
147
  virtual void item_swap(void *a,void *b) { (void)a; (void)b; }
148
148
  /**
149
149
    This method must be provided by the subclass 
150
150
    to return the item for the specified \p index. 
151
151
    \param[in] index The \p index of the item to be returned
152
152
    \returns The item at the specified \p index.
153
153
   */
154
 
  virtual void *item_at(int index) const { return 0L; }
 
154
  virtual void *item_at(int index) const { (void)index; return 0L; }
155
155
  // you don't have to provide these but it may help speed it up:
156
156
  virtual int full_width() const ;      // current width of all items
157
157
  virtual int full_height() const ;     // current height of all items
374
374
#endif
375
375
 
376
376
//
377
 
// End of "$Id: Fl_Browser_.H 6902 2009-09-27 11:06:56Z matt $".
 
377
// End of "$Id: Fl_Browser_.H 8275 2011-01-13 22:07:31Z manolo $".
378
378
//