Files
pokerth/src/gui/qt/gametable/myrighttabwidget.cpp
T

36 lines
531 B
C++
Raw Normal View History

2008-05-05 07:46:19 +00:00
//
// C++ Implementation: MyRightTabWidget
//
// Description:
2008-05-05 07:46:19 +00:00
//
//
// 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)
2008-05-05 07:46:19 +00:00
{
myTabBar = this->tabBar();
}
MyRightTabWidget::~MyRightTabWidget()
{
}
void MyRightTabWidget::paintEvent(QPaintEvent * event)
{
2008-05-05 07:46:19 +00:00
QTabWidget::paintEvent(event);
2008-05-05 07:46:19 +00:00
}