nor does it have an internal marketplace with a complete CRM-system for merchants & customers integrated.
Could you post a link to the integration source in the repos. It's my bad, but all I can seem to find is this ...
#include "form.h"
#include "ui_form.h"
#include
#include
Form::Form(QWidget *parent) :
QWidget(parent),
ui(new Ui::Form)
{
ui->setupUi(this);
/* m_pWebView = new QWebView(this);
m_pWebView->load(QUrl("http://www.google.com"));
m_pWebView->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
*/
}
Form::~Form()
{
delete ui;
// ui->setupUi(this);
// this->webView->load(QUrl("http://chingeling.com/ecommerce"));
}
Cheers
Graham