]> git.lyx.org Git - features.git/commitdiff
* src/frontends/controllers/ControlAboutlyx.[Ch]:
authorJürgen Spitzmüller <spitz@lyx.org>
Mon, 26 Mar 2007 15:05:59 +0000 (15:05 +0000)
committerJürgen Spitzmüller <spitz@lyx.org>
Mon, 26 Mar 2007 15:05:59 +0000 (15:05 +0000)
* 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

src/frontends/controllers/ControlAboutlyx.C
src/frontends/controllers/ControlAboutlyx.h
src/frontends/qt4/QAbout.C

index 441f57feeea27c64a63470840e79bd1cf10cb4f6..55053f3bee686d58a33272976d62c0b1ba9ee474 100644 (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."));
index 7cfa322b3a8835881d668abf256862b1fbf98c9f..a105c078688b013bdc45c22076f8a9b61802499d 100644 (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;
        //@}
index fc5e4bea88d2d740759cb44973acc10ec1d21864..b45c0a3a9f727515081dfdc9aa952a079137170d 100644 (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()));