File: qlclabstractspinbox.h

package info (click to toggle)
libqtpas 2.6%2B2.0.8%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,860 kB
  • sloc: cpp: 56,595; pascal: 13,727; sh: 44; makefile: 18
file content (17 lines) | stat: -rw-r--r-- 330 bytes parent folder | download | duplicates (17)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef QLCLABSTRACTSPINBOX_H
#define QLCLABSTRACTSPINBOX_H

#include <QAbstractSpinBox>



class QLCLAbstractSpinBox : public QAbstractSpinBox
{
public:
  static QLineEdit *lineEditHandle(QAbstractSpinBox *protectedhandle) 
    {
    return reinterpret_cast<QLCLAbstractSpinBox *>(protectedhandle)->lineEdit();
    } 
};

#endif