Home | History | Annotate | Download | only in Api

Lines Matching full:other

70     Contructs a copy of \a other.
72 QWebPluginInfo::QWebPluginInfo(const QWebPluginInfo& other)
73 : m_package(other.m_package)
201 Returns true if this plugin info is the same as the \a other plugin info.
203 bool QWebPluginInfo::operator==(const QWebPluginInfo& other) const
205 return m_package == other.m_package;
209 Returns true if this plugin info is different from the \a other plugin info.
211 bool QWebPluginInfo::operator!=(const QWebPluginInfo& other) const
213 return m_package != other.m_package;
217 Assigns the \a other plugin info to this plugin info, and returns a reference
220 QWebPluginInfo &QWebPluginInfo::operator=(const QWebPluginInfo& other)
222 if (this == &other)
227 m_package = other.m_package;
230 m_mimeTypes = other.m_mimeTypes;