Files
pokerth/src/gui/qt/gametable/myrighttabwidget.cpp
T
lotodore 02518c67b2 Reformatting code using Kernighan & Ritchie style, tabs, tab width=4.
Command line: astyle --style=kr --indent=force-tab=4 --lineend=linux -n -r <file names>
2011-02-11 20:02:08 +00:00

36 lines
531 B
C++
Executable File

//
// C++ Implementation: MyRightTabWidget
//
// Description:
//
//
// Author: FThauer FHammer <f.thauer@web.de>, (C) 2007
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include "myrighttabwidget.h"
#include <iostream>
using namespace std;
MyRightTabWidget::MyRightTabWidget(QGroupBox *parent)
: QTabWidget(parent), myTabBar(0)
{
myTabBar = this->tabBar();
}
MyRightTabWidget::~MyRightTabWidget()
{
}
void MyRightTabWidget::paintEvent(QPaintEvent * event)
{
QTabWidget::paintEvent(event);
}