Skip to content

Commit

Permalink
Replace some Qt3 widgets with Qt4 ones
Browse files Browse the repository at this point in the history
Move the delimited plugin help text from the .ui file to the .cpp file
(allows for easier translation)
Remove some unnecessry #includes


git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@6541 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed Feb 6, 2007
1 parent 0ad62d9 commit 0d5b249
Show file tree
Hide file tree
Showing 4 changed files with 146 additions and 178 deletions.
1 change: 0 additions & 1 deletion src/core/qgsclipper.h
Expand Up @@ -21,7 +21,6 @@
#define QGSCLIPPER_H

#include "qgspoint.h"
#include "q3pointarray.h"

#include <vector>
#include <utility>
Expand Down
4 changes: 4 additions & 0 deletions src/plugins/delimited_text/qgsdelimitedtextplugingui.cpp
Expand Up @@ -42,6 +42,10 @@ QgsDelimitedTextPluginGui::QgsDelimitedTextPluginGui(QgisInterface * _qI, QWidge
QString key = "/Plugin-DelimitedText";
txtDelimiter->setText(settings.readEntry(key + "/delimiter"));

teInstructions->setHtml(tr("<h1>Description</h1>"
"<p>Select a delimited text file containing x and y coordinates that you would like to use as a point layer and this plugin will do the job for you!</p>"
"<p>Use the layer name box to specify the legend name for the new layer. Use the delimiter box to specify what delimeter is used in your file (e.g. space, comma or tab). After choosing a delimiter, press the parse button an select the columns containing the x and y values for the layer.</p>"));

}
QgsDelimitedTextPluginGui::~QgsDelimitedTextPluginGui()
{
Expand Down

0 comments on commit 0d5b249

Please sign in to comment.