various.diff

Redmine Admin, 2006-05-13 06:59 AM

Download (2.18 KB)

View differences:

src/gui/qgscustomprojectiondialog.cpp (working copy)
901 901
  if ( wgs84Proj == NULL ) 
902 902
  {
903 903
    QMessageBox::information( this, tr("QGIS Custom Projection"),
904
            tr("Internal Error (source projection invalid?") );
904
            tr("Internal Error (source projection invalid?)") );
905 905
    projectedX->setText("");
906 906
    projectedY->setText("");
907 907
    pj_free(myProj);
src/gui/qgsabout.cpp (working copy)
175 175
	 tr("Enter the name of a web browser to use (eg. konqueror).\n"
176 176
	    "Enter the full path if the browser is not in your PATH.\n"
177 177
            "You can change this option later by selection Options from"
178
	    " the Tools menu."),
178
	    " the Settings menu (Help Browser tab)."),
179 179
        QLineEdit::Normal,
180 180
        QString::null, &ok, this);
181 181
    if (ok && !text.isEmpty())
src/gui/qgisapp.cpp (working copy)
600 600
  //
601 601

  
602 602
  mActionStartEditing = new QAction(QIcon(myIconPath+"/mActionStartEditing.png"), tr("Start Editing"), this);
603
  mActionStartEditing->setStatusTip(tr("Start editing the current layer"));
603 604
  connect(mActionStartEditing, SIGNAL(triggered()), this, SLOT(startEditing()));
604
  mActionStopEditing = new QAction(QIcon(myIconPath+"/mActionStopEditing.png"), tr("Stop Editing"), this);
605
  //
606
  mActionStopEditing = new QAction(QIcon(myIconPath+"/mActionStopEditing.png"), tr("Stop Editing"), this);    
607
  mActionStopEditing->setStatusTip(tr("Stop editing the current layer"));
605 608
  connect(mActionStopEditing, SIGNAL(triggered()), this, SLOT(stopEditing()));
609
  //
606 610
  mActionCapturePoint= new QAction(QIcon(myIconPath+"/mActionCapturePoint.png"), tr("Capture Point"), this);
607 611
  mActionCapturePoint->setShortcut(tr(".","Capture Points"));
608 612
  mActionCapturePoint->setStatusTip(tr("Capture Points"));