aboutsummaryrefslogtreecommitdiffstats
path: root/tests/pysidetest/testview.cpp
blob: c7e9c6db42f34836082728ed33a50d416173288d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "testview.h"
#include <QDebug>
#include <stdio.h>

QObject*
TestView::getData()
{
    QModelIndex index;
    QVariant data = m_model->data(index);
    QObject* obj = 0;
    if (data.canConvert<QObject*>())
        obj = data.value<QObject*>();
    return obj;
}