aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/addon/packaddondialog.cpp
diff options
context:
space:
mode:
authorGravatar Elvio Basello2008-05-09 13:12:28 +0000
committerGravatar Elvio Basello2008-05-09 13:12:28 +0000
commit9c5233a2c9b3f7069f8395734fcffeb797c4b4af (patch)
tree2cf9d59f76710b6f7aa57645722b85f80441cff2 /src/modules/addon/packaddondialog.cpp
parentmore new addon packaging system (wip) (diff)
downloadKVIrc-9c5233a2c9b3f7069f8395734fcffeb797c4b4af.tar.gz
KVIrc-9c5233a2c9b3f7069f8395734fcffeb797c4b4af.tar.bz2
KVIrc-9c5233a2c9b3f7069f8395734fcffeb797c4b4af.zip
quick fix
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@1719 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/addon/packaddondialog.cpp')
-rw-r--r--src/modules/addon/packaddondialog.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/addon/packaddondialog.cpp b/src/modules/addon/packaddondialog.cpp
index 768a8248b..b5114da33 100644
--- a/src/modules/addon/packaddondialog.cpp
+++ b/src/modules/addon/packaddondialog.cpp
@@ -5,6 +5,7 @@
//
// This file is part of the KVIrc IRC Client distribution
// Copyright (C) 2008 Elvio Basello <hellvis69 at netsons dot org>
+// Copyright (C) 2008 Alessandro Carbone <elfonol at gmail dot com>
//
// This program is FREE software. You can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -62,7 +63,6 @@
KviPackAddonDialog::KviPackAddonDialog(QWidget * pParent)
: KviTalWizard(pParent)
{
-
m_szPackagePath = QDir::homeDirPath();
KviQString::ensureLastCharIs(m_szPackagePath,QChar(KVI_PATH_SEPARATOR_CHAR));
/*
@@ -269,9 +269,9 @@ KviPackAddonCreateInfoPackageWidget::KviPackAddonCreateInfoPackageWidget(KviPack
pLabel->setText(__tr2qs_ctx("Package Author:","addon"));
pLayout->addWidget(pLabel,1,0);
- m_pPackagerNameEdit = new QLineEdit(this);
- m_pPackagerNameEdit->setText(szPackageAuthor);
- pLayout->addWidget(m_pPackagerNameEdit,1,1);
+ m_pAuthorNameEdit = new QLineEdit(this);
+ m_pAuthorNameEdit->setText(szPackageAuthor);
+ pLayout->addWidget(m_pAuthorNameEdit,1,1);
pLabel = new QLabel(this);
pLabel->setText(__tr2qs_ctx("Package Name:","addon"));