corregida toolbar en macosx

This commit is contained in:
Luis Ángel San Martín
2013-06-17 12:57:00 +02:00
commit ca6347e689
546 changed files with 45296 additions and 0 deletions

View File

@ -0,0 +1,19 @@
#ifndef YACREADER_TOOL_BAR_STRETCH_H
#define YACREADER_TOOL_BAR_STRETCH_H
#include <QWidget>
class QHBoxLayout;
class QToolBarStretch : public QWidget
{
public:
QToolBarStretch(QWidget * parent=0):QWidget(parent)
{
QHBoxLayout * l= new QHBoxLayout();
l->addStretch();
setLayout(l);
}
};
#endif // YACREADER_TOOL_BAR_STRETCH_H