~ubuntu-branches/ubuntu/trusty/lmms/trusty

« back to all changes in this revision

Viewing changes to plugins/zynaddsubfx/fltk/src/scandir.c

  • 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:
21
21
#else
22
22
 
23
23
#  include "flstring.h"
24
 
#  include <FL/fl_utf8.h>
25
24
 
26
25
#  if !HAVE_SCANDIR
27
26
#    include <stdlib.h>
50
49
           int (*select)(struct dirent *),
51
50
           int (*compar)(struct dirent **, struct dirent **))
52
51
{
53
 
  DIR *dp = opendir (fl_utf2mbcs(dir));
 
52
  DIR *dp = opendir (dir);
54
53
  struct dirent **v = NULL;
55
54
  size_t vsize = 0, i;
56
55
  struct dirent *d;
121
120
#endif
122
121
 
123
122
/*
124
 
 * End of "$Id: scandir.c 6311 2008-09-19 17:40:20Z matt $".
 
123
 * End of "$Id: scandir.c 8192 2011-01-05 16:50:10Z manolo $".
125
124
 */