diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2013-06-06 08:11:28 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2013-06-06 08:11:28 +0200 |
commit | f7aa064edc20eafbc738271c5b53238fa4ad8361 (patch) | |
tree | a1c6c107fb82a0ba647f6f72fb24691a1e8f4bc7 /ftnoir_tracker_udp | |
parent | 2b83e2db9552d3f0abd3c4bb5543f72a96e4e4bf (diff) |
Remove dead code
Diffstat (limited to 'ftnoir_tracker_udp')
-rw-r--r-- | ftnoir_tracker_udp/ftnoir_tracker_udp.h | 2 | ||||
-rw-r--r-- | ftnoir_tracker_udp/ftnoir_tracker_udp_dll.cpp | 13 |
2 files changed, 4 insertions, 11 deletions
diff --git a/ftnoir_tracker_udp/ftnoir_tracker_udp.h b/ftnoir_tracker_udp/ftnoir_tracker_udp.h index 6e200db6..c4c85372 100644 --- a/ftnoir_tracker_udp/ftnoir_tracker_udp.h +++ b/ftnoir_tracker_udp/ftnoir_tracker_udp.h @@ -84,8 +84,6 @@ public: FTNoIR_TrackerDll();
~FTNoIR_TrackerDll();
- void Initialize();
-
void getFullName(QString *strToBeFilled);
void getShortName(QString *strToBeFilled);
void getDescription(QString *strToBeFilled);
diff --git a/ftnoir_tracker_udp/ftnoir_tracker_udp_dll.cpp b/ftnoir_tracker_udp/ftnoir_tracker_udp_dll.cpp index cbb0c644..0e794842 100644 --- a/ftnoir_tracker_udp/ftnoir_tracker_udp_dll.cpp +++ b/ftnoir_tracker_udp/ftnoir_tracker_udp_dll.cpp @@ -46,30 +46,25 @@ FTNoIR_TrackerDll::~FTNoIR_TrackerDll() }
-void FTNoIR_TrackerDll::Initialize()
-{
- return;
-}
-
void FTNoIR_TrackerDll::getFullName(QString *strToBeFilled)
{
*strToBeFilled = trackerFullName;
-};
+}
void FTNoIR_TrackerDll::getShortName(QString *strToBeFilled)
{
*strToBeFilled = trackerShortName;
-};
+}
void FTNoIR_TrackerDll::getDescription(QString *strToBeFilled)
{
*strToBeFilled = trackerDescription;
-};
+}
void FTNoIR_TrackerDll::getIcon(QIcon *icon)
{
*icon = QIcon(":/images/facetracknoir.png");
-};
+}
////////////////////////////////////////////////////////////////////////////////
// Factory function that creates instances if the Tracker object.
|