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

« back to all changes in this revision

Viewing changes to plugins/zynaddsubfx/fltk/src/Fl_Check_Browser.cxx

  • 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_Check_Browser.cxx 6616 2009-01-01 21:28:26Z matt $"
 
2
// "$Id: Fl_Check_Browser.cxx 8354 2011-02-01 15:41:04Z manolo $"
3
3
//
4
4
// Fl_Check_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
166
166
        return i->selected;
167
167
}
168
168
/**
169
 
    Add a new unchecked line to the end of the browser.  The text is copied
170
 
    using the strdup() function.  It may also be NULL to make
171
 
    a blank line.  The second form can set the item checked.
 
169
 Add a new unchecked line to the end of the browser.  
 
170
 \see add(char *s, int b)
172
171
*/
173
172
int Fl_Check_Browser::add(char *s) {
174
173
        return (add(s, 0));
175
174
}
176
175
 
177
 
/** See int Fl_Check_Browser::add(char *s) */
 
176
/** 
 
177
 Add a new line to the end of the browser.  The text is copied
 
178
 using the strdup() function.  It may also be NULL to make
 
179
 a blank line.  It can set the item checked if \p b is not 0.
 
180
 */
178
181
int Fl_Check_Browser::add(char *s, int b) {
179
182
        cb_item *p = (cb_item *)malloc(sizeof(cb_item));
180
183
        p->next = 0;
322
325
}
323
326
 
324
327
//
325
 
// End of "$Id: Fl_Check_Browser.cxx 6616 2009-01-01 21:28:26Z matt $".
 
328
// End of "$Id: Fl_Check_Browser.cxx 8354 2011-02-01 15:41:04Z manolo $".
326
329
//