diff options
Diffstat (limited to 'ftnoir_tracker_pt/ftnoir_tracker_pt_dll.h')
-rw-r--r-- | ftnoir_tracker_pt/ftnoir_tracker_pt_dll.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ftnoir_tracker_pt/ftnoir_tracker_pt_dll.h b/ftnoir_tracker_pt/ftnoir_tracker_pt_dll.h index 50f66a35..d9b9adf6 100644 --- a/ftnoir_tracker_pt/ftnoir_tracker_pt_dll.h +++ b/ftnoir_tracker_pt/ftnoir_tracker_pt_dll.h @@ -19,8 +19,6 @@ class TrackerDll : public ITrackerDll #endif { - void getFullName(QString *strToBeFilled); - void getShortName(QString *strToBeFilled); - void getDescription(QString *strToBeFilled); - void getIcon(QIcon *icon); + QString name() { return QString("PointTracker 1.1"); } + QIcon icon() { return QIcon(":/Resources/Logo_IR.png"); } }; |