summaryrefslogtreecommitdiffstats
path: root/src/libs/installer/productkeycheck.cpp
diff options
context:
space:
mode:
authorTim Jenssen <tim.jenssen@digia.com>2013-11-22 20:16:48 +0100
committerKarsten Heimrich <karsten.heimrich@digia.com>2013-11-25 16:33:52 +0100
commit42255f8756c5c92bc3312dce2d672bb2c4d6f2b7 (patch)
tree7e9afe5da4ab8992586be9d359eb43556959bf23 /src/libs/installer/productkeycheck.cpp
parent8eabcaca2c9eba3a377e14d99e9649e184b0fee6 (diff)
Implement factory to be able to insert pages dynamically.
Change-Id: Ic358a820148670da85a1b374abd08103eaa995de Reviewed-by: Tim Jenssen <tim.jenssen@digia.com> Reviewed-by: Karsten Heimrich <karsten.heimrich@digia.com>
Diffstat (limited to 'src/libs/installer/productkeycheck.cpp')
-rw-r--r--src/libs/installer/productkeycheck.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/libs/installer/productkeycheck.cpp b/src/libs/installer/productkeycheck.cpp
index a4af2b6d3..9a9010d60 100644
--- a/src/libs/installer/productkeycheck.cpp
+++ b/src/libs/installer/productkeycheck.cpp
@@ -89,9 +89,13 @@ bool ProductKeyCheck::isValidLicenseTextFile(const QString &/*fileName*/)
return true;
}
-
bool ProductKeyCheck::isValidRepository(const QInstaller::Repository &repository) const
{
Q_UNUSED(repository)
return true;
-} \ No newline at end of file
+}
+
+QList<int> ProductKeyCheck::registeredPages() const
+{
+ return QList<int>();
+}