Contact cannot be a null ptr, and it is accessed before anyway. Disscussed with kedge.
[kdenetwork.git] / kppp / newwidget.h
blob52f2ec7648804aa58b349d403e50156eda9bf10a
1 /////////////////////////////////////////////////////////////////////////////
2 //
3 // functions generating layout-aware widgets
4 //
5 /////////////////////////////////////////////////////////////////////////////
7 #ifndef __NEWWIDGET__H__
8 #define __NEWWIDGET__H__
10 #include <qwidget.h>
11 #include <qlineedit.h>
13 #define L_FIXEDW 1
14 #define L_FIXEDH 2
15 #define L_FIXED (L_FIXEDW | L_FIXEDH)
17 QLineEdit *newLineEdit(int visiblewidth, QWidget *parent);
19 #endif