* 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:
Jürgen Spitzmüller 2007-03-26 15:05:59 +00:00
parent 2cbb8c77ec
commit bbc02f6ada
3 changed files with 0 additions and 9 deletions

View File

@ -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."));

View File

@ -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;
//@}

View File

@ -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()));