By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1322
Collapse All | Expand All

(-)a/ksim/library/pluginglobal.cpp (-2 / +2 lines)
Lines 155-161 bool KSim::Plugin::isNull() const Link Here
155
  return !d;
155
  return !d;
156
}
156
}
157
157
158
const TQString &KSim::Plugin::name() const
158
TQString KSim::Plugin::name() const
159
{
159
{
160
  return d ? d->name : TQString();
160
  return d ? d->name : TQString();
161
}
161
}
Lines 170-176 TQCString KSim::Plugin::libName() const Link Here
170
  return d ? d->libName : TQCString();
170
  return d ? d->libName : TQCString();
171
}
171
}
172
172
173
const TQString &KSim::Plugin::fileName() const
173
TQString KSim::Plugin::fileName() const
174
{
174
{
175
  return d ? d->filename : TQString();
175
  return d ? d->filename : TQString();
176
}
176
}
(-)a/ksim/library/pluginglobal.h (-2 / +2 lines)
Lines 93-99 namespace KSim Link Here
93
       * @return the name of the plugin, NOT the library name
93
       * @return the name of the plugin, NOT the library name
94
       * @see #libName
94
       * @see #libName
95
       */
95
       */
96
      const TQString &name() const;
96
      TQString name() const;
97
      /**
97
      /**
98
       * @return the icon of the plugin
98
       * @return the icon of the plugin
99
       */
99
       */
Lines 105-111 namespace KSim Link Here
105
      /**
105
      /**
106
       * @return path to the .desktop file
106
       * @return path to the .desktop file
107
       */
107
       */
108
      const TQString &fileName() const;
108
      TQString fileName() const;
109
      /**
109
      /**
110
       * @return the plugin object
110
       * @return the plugin object
111
       */
111
       */

Return to bug 1322