Skip to content

Commit 0d5b249

Browse files
author
g_j_m
committed
Replace some Qt3 widgets with Qt4 ones
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
1 parent 0ad62d9 commit 0d5b249

File tree

4 files changed

+146
-178
lines changed

4 files changed

+146
-178
lines changed

src/core/qgsclipper.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
#define QGSCLIPPER_H
2222

2323
#include "qgspoint.h"
24-
#include "q3pointarray.h"
2524

2625
#include <vector>
2726
#include <utility>

src/plugins/delimited_text/qgsdelimitedtextplugingui.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ QgsDelimitedTextPluginGui::QgsDelimitedTextPluginGui(QgisInterface * _qI, QWidge
4242
QString key = "/Plugin-DelimitedText";
4343
txtDelimiter->setText(settings.readEntry(key + "/delimiter"));
4444

45+
teInstructions->setHtml(tr("<h1>Description</h1>"
46+
"<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>"
47+
"<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>"));
48+
4549
}
4650
QgsDelimitedTextPluginGui::~QgsDelimitedTextPluginGui()
4751
{

0 commit comments

Comments
 (0)