mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
* src/frontends/controllers/ControlAboutlyx.[Ch]:
* src/frontends/qt4/QAbout.C: - remove obsolete getLicense (which is identical to getDisclaimer) [bug 3371] git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17572 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
2cbb8c77ec
commit
bbc02f6ada
@ -68,12 +68,6 @@ string const ControlAboutlyx::getCopyright() const
|
||||
}
|
||||
|
||||
|
||||
string const ControlAboutlyx::getLicense() const
|
||||
{
|
||||
return lyx::to_utf8(_("LyX is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\nSee the GNU General Public License for more details.\nYou should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA."));
|
||||
}
|
||||
|
||||
|
||||
string const ControlAboutlyx::getDisclaimer() const
|
||||
{
|
||||
return lyx::to_utf8(_("LyX is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\nSee the GNU General Public License for more details.\nYou should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA."));
|
||||
|
@ -37,7 +37,6 @@ public:
|
||||
/// Provide the View with specific pieces of information.
|
||||
void getCredits(std::ostream &) const;
|
||||
std::string const getCopyright() const;
|
||||
std::string const getLicense() const;
|
||||
std::string const getDisclaimer() const;
|
||||
std::string const getVersion() const;
|
||||
//@}
|
||||
|
@ -54,8 +54,6 @@ void QAbout::build_dialog()
|
||||
|
||||
dialog_->copyrightTB->setPlainText(toqstr(controller().getCopyright()));
|
||||
dialog_->copyrightTB->append("\n");
|
||||
dialog_->copyrightTB->append(toqstr(controller().getLicense()));
|
||||
dialog_->copyrightTB->append("\n");
|
||||
dialog_->copyrightTB->append(toqstr(controller().getDisclaimer()));
|
||||
|
||||
dialog_->versionLA->setText(toqstr(controller().getVersion()));
|
||||
|
Loading…
Reference in New Issue
Block a user