~ubuntu-branches/ubuntu/wily/ipe/wily-proposed

« back to all changes in this revision

Viewing changes to src/ipe/appui_qt.cpp

  • Committer: Package Import Robot
  • Author(s): Steve M. Robbins
  • Date: 2012-01-15 22:33:06 UTC
  • mfrom: (1.1.13)
  • Revision ID: package-import@ubuntu.com-20120115223306-4gh8wgv0em3w8ptm
Tags: 7.1.2-1
* New upstream.

* ipe.preinst: New.  Remove old directory /usr/share/doc/ipe/doc if it
  exists on upgrade.  That path is now a symlink, but linking fails if
  the directory is there.  Closes: #654922.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
/*
5
5
 
6
6
    This file is part of the extensible drawing editor Ipe.
7
 
    Copyright (C) 1993-2011  Otfried Cheong
 
7
    Copyright (C) 1993-2012  Otfried Cheong
8
8
 
9
9
    Ipe is free software; you can redistribute it and/or modify it
10
10
    under the terms of the GNU General Public License as published by
124
124
 
125
125
void AppUi::addItem(QMenu *m, const QString &title, const char *name)
126
126
{
127
 
  bool canUseWhileDrawing = false;
 
127
  // bool canUseWhileDrawing = false;
128
128
  if (name[0] == '@') {
129
 
    canUseWhileDrawing = true;
 
129
    // canUseWhileDrawing = true;
130
130
    name = name + 1;
131
131
  }
132
132
  bool checkable = (m == iMenu[EModeMenu]) ||
733
733
 
734
734
static const char * const aboutText =
735
735
"<qt><h2>Ipe %d.%d.%d</h2>"
736
 
"<p>Copyright (c) 1993-2011 Otfried Cheong</p>"
 
736
"<p>Copyright (c) 1993-2012 Otfried Cheong</p>"
737
737
"<p>The extensible drawing editor Ipe creates figures "
738
738
"in Postscript and PDF format, "
739
739
"using LaTeX to format the text in the figures.</p>"