mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-26 17:54:32 +00:00
18 lines
372 B
JavaScript
18 lines
372 B
JavaScript
function Component()
|
|
{
|
|
generateTr();
|
|
}
|
|
|
|
function generateTr() {
|
|
component.setValue("DisplayName", qsTr("CQtDeployer"));
|
|
component.setValue("Description", qsTr("This package contains CQtDeployer"));
|
|
}
|
|
|
|
|
|
Component.prototype.createOperations = function()
|
|
{
|
|
// // call default implementation to actually install README.txt!
|
|
component.createOperations();
|
|
|
|
}
|