From 4ed913cf623968d71642c3d7fd556c2a712cfa69 Mon Sep 17 00:00:00 2001 From: Fat-Zer <> Date: Sat, 2 Mar 2013 22:54:28 -0600 Subject: [PATCH] Fix ksim crash. This resolves bug report 1322. --- ksim/library/pluginglobal.cpp | 4 ++-- ksim/library/pluginglobal.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ksim/library/pluginglobal.cpp b/ksim/library/pluginglobal.cpp index 08ff3c9..4d176bf 100644 --- a/ksim/library/pluginglobal.cpp +++ b/ksim/library/pluginglobal.cpp @@ -155,7 +155,7 @@ bool KSim::Plugin::isNull() const return !d; } -const TQString &KSim::Plugin::name() const +TQString KSim::Plugin::name() const { return d ? d->name : TQString(); } @@ -170,7 +170,7 @@ TQCString KSim::Plugin::libName() const return d ? d->libName : TQCString(); } -const TQString &KSim::Plugin::fileName() const +TQString KSim::Plugin::fileName() const { return d ? d->filename : TQString(); } diff --git a/ksim/library/pluginglobal.h b/ksim/library/pluginglobal.h index 5dbeef8..e094198 100644 --- a/ksim/library/pluginglobal.h +++ b/ksim/library/pluginglobal.h @@ -93,7 +93,7 @@ namespace KSim * @return the name of the plugin, NOT the library name * @see #libName */ - const TQString &name() const; + TQString name() const; /** * @return the icon of the plugin */ @@ -105,7 +105,7 @@ namespace KSim /** * @return path to the .desktop file */ - const TQString &fileName() const; + TQString fileName() const; /** * @return the plugin object */