~ubuntu-branches/ubuntu/saucy/pyqwt3d/saucy-proposed

« back to all changes in this revision

Viewing changes to qwtplot3d-0.2.7/examples/mesh2/src/lightingdlgbaseimpl.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Gudjon I. Gudjonsson
  • Date: 2009-11-07 12:54:42 UTC
  • mfrom: (3.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20091107125442-92kgp0l7lessmiwo
Tags: 0.1.7~cvs20090625-2
* Change sip4 dependencies to >=4.9
* Add binary dependency on python-sip4 >=4.9
* Bump standards version to 3.8.3, no changes needed
* Add README.source file

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#include "lightingdlgbaseimpl.h"
2
 
 
3
 
/* 
4
 
 *  Constructs a lightingdlgbase which is a child of 'parent', with the 
5
 
 *  name 'name' and widget flags set to 'f' 
6
 
 *
7
 
 *  The dialog will by default be modeless, unless you set 'modal' to
8
 
 *  TRUE to construct a modal dialog.
9
 
 */
10
 
lightingdlgbase::lightingdlgbase( QWidget* parent,  const char* name, bool modal, WFlags fl )
11
 
    : lightingdlgbaseBase( parent, name, modal, fl )
12
 
{
13
 
}
14
 
 
15
 
/*  
16
 
 *  Destroys the object and frees any allocated resources
17
 
 */
18
 
lightingdlgbase::~lightingdlgbase()
19
 
{
20
 
    // no need to delete child widgets, Qt does it all for us
21
 
}
22