GithubHelp home page GithubHelp logo

stpcreatorlib's Introduction

STPCreator

qmake -spec win32-msvc2008 -tp vc

following the same instruction to use the lib in your visual studio project http://stackoverflow.com/questions/6093325/how-to-link-a-lib-in-visual-studio-2008-c To link with a .lib file, you just need to:

right clic on the project name, select Properties
under Properties->configuration properties->C/C++->General item "other include directories" add the path to your .h file
under Properties->Linker->Input add the path and name of your .lib file

And that's it. at the moment you should point the header to the folder src

stpcreatorlib's People

Contributors

lorenzomacca avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Forkers

kirya-dev

stpcreatorlib's Issues

Issie in the HTML generated

The following issues have been found:

  1. No space between td and stype

tdstyle ='text-align: center; margin-left: auto; margin-right:
auto; font-family:Arial, Helvetica, sans-serif; font-size: 10pt; background-color: #ece9d8;'>

  1. No space between td and stype

tdwidth ='4%'style='text-align: center; margin-left: auto; margin-right: auto; font-family: Arial, Helvetica, sans-serif; font-size: 10pt; background-color: #ffff80; line-height: 1.5em;'>
Mi </span

  1. no build has been generated.

[JIRA] – task ticket not created

Process.run() execute the script in parallel this means that when the script 2 starts, it doesn’t find the config file, that should be generated from the script 1. The fix is, start with the second script only when the first one is done.

Not possible add a component in build

hon02->components().append(amfmM);

1>.\main.cpp(24) : error C2663: 'QList::append' : 2 overloads have no legal conversion for 'this' pointer
1> with
1> [
1> T=ComponentSoftware
1> ]

It's const correctness issues.

const member functions can not change member vars, and they can only call other const member functions. A const function cannot call a nonconst function on the same object.

compiler issue in TEST_001

TEST_001::TEST_001(const TEST_001 &other):TEST_001(other.parent())
{
this->m_name = other.name();
}

to

TEST_001::TEST_001(const TEST_001 &other)
{
this->setParent(other.parent());
this->m_name = other.name();
}

[JIRA] - cmd file not foud

this is the fix:
cd JiraScriptPerl

set CONF_FILE=configFile/%1
set CW=%2

echo CreateShortTermPlanPlusIntegrationTickets.pl -i %CONF_FILE% -cw %CW% -st 2 -r %3

perl CreateShortTermPlanPlusIntegrationTickets.pl -i %CONF_FILE% -cw %CW% -st 2 -r %3 > script.log

[JIRA] - date is not properly set

[ERROR] validateValueFromField: Field Due Date is a date of unrecognized format: 22.9.2016
[ERROR] validateValueFromField: Accepted date formats are: dd.mm.yyyy or dd-mm-yyyy or yyyy-mm-dd or dd/mm/yyyy
2016-10-10 13:58:16 - FATAL: Value 22.9.2016 for column Due Date is not valid

JIRA package

  1. return a const QProcess pointer
  2. change the signal finisched() -> finisched(status)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.