~ubuntu-branches/ubuntu/saucy/muse/saucy

« back to all changes in this revision

Viewing changes to muse/widgets/vst_native_editor.cpp

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2013-01-07 10:27:14 UTC
  • mfrom: (1.1.14)
  • Revision ID: package-import@ubuntu.com-20130107102714-fajkwjbz02aqupbh
Tags: 2.1-1
* New upstream release.
* Refresh 1001-buildsystem.patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
//
22
22
//=========================================================
23
23
 
 
24
#include "config.h"
 
25
 
 
26
#ifdef VST_NATIVE_SUPPORT
 
27
 
24
28
#include "vst_native_editor.h"
25
29
#include "vst_native.h"
26
30
 
132
136
                  QWidget::setFixedSize(w, h);
133
137
  }
134
138
 
135
 
  int rv = _sif->dispatch(effEditOpen, 0, value, ptr, 0.0f);
 
139
  _sif->dispatch(effEditOpen, 0, value, ptr, 0.0f);
 
140
  //int rv = _sif->dispatch(effEditOpen, 0, value, ptr, 0.0f);
136
141
  //fprintf(stderr, "VstNativeEditor::open effEditOpen returned:%d effEditGetRect rect l:%d r:%d t:%d b:%d\n", rv, pRect->left, pRect->right, pRect->top, pRect->bottom); // REMOVE Tim.
137
142
  
138
143
#if defined(Q_WS_X11)
231
236
}
232
237
 
233
238
} // namespace MusEGui
 
239
 
 
240
#endif // VST_NATIVE_SUPPORT
 
241