1
0
mirror of https://github.com/QtExcel/QXlsx.git synced 2025-01-16 04:42:53 +08:00
Jay Two 2023-01-05 16:14:01 +09:00
parent c9fd393e1f
commit d0f846a31e
2 changed files with 13 additions and 8 deletions

View File

@ -22,14 +22,6 @@ using namespace std;
#include "xlsxrichstring.h"
#include "xlsxworkbook.h"
int test162( QVector<QVariant> params );
int test( QVector<QVariant> params )
{
qDebug() << "[debug] current path : " << QDir::currentPath();
return test162( params );
}
int test162( QVector<QVariant> params )
{
using namespace QXlsx;
@ -46,3 +38,15 @@ int test162( QVector<QVariant> params )
return 0;
}
int test( QVector<QVariant> params )
{
qDebug() << "[debug] current path : " << QDir::currentPath();
// return test162( params );
return 0;
}

View File

@ -42,6 +42,7 @@ bool NumFormatParser::isDateTime(const QString &formatCode)
// date/time can only be positive number,
// so only the first section of the format make sense.
case '#': // this is new an working // https://github.com/QtExcel/QXlsx/issues/190
case ';':
return false;
break;