Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Plasma Workspace
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
3
Issues
3
List
Boards
Labels
Service Desk
Milestones
Merge Requests
62
Merge Requests
62
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Plasma
Plasma Workspace
Commits
32af7e8d
Commit
32af7e8d
authored
Jan 04, 2018
by
Friedrich W. H. Kossebau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[weather] QList -> QVector
parent
f3432b54
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
dataengines/weather/ions/noaa/ion_noaa.cpp
dataengines/weather/ions/noaa/ion_noaa.cpp
+1
-1
dataengines/weather/ions/noaa/ion_noaa.h
dataengines/weather/ions/noaa/ion_noaa.h
+1
-1
No files found.
dataengines/weather/ions/noaa/ion_noaa.cpp
View file @
32af7e8d
...
...
@@ -792,7 +792,7 @@ void NOAAIon::forecast_slotJobFinished(KJob *job)
void
NOAAIon
::
readForecast
(
const
QString
&
source
,
QXmlStreamReader
&
xml
)
{
Q
List
<
WeatherData
::
Forecast
>&
forecasts
=
m_weatherData
[
source
].
forecasts
;
Q
Vector
<
WeatherData
::
Forecast
>&
forecasts
=
m_weatherData
[
source
].
forecasts
;
// Clear the current forecasts
forecasts
.
clear
();
...
...
dataengines/weather/ions/noaa/ion_noaa.h
View file @
32af7e8d
...
...
@@ -77,7 +77,7 @@ public:
QString
low
;
QString
high
;
};
Q
List
<
Forecast
>
forecasts
;
Q
Vector
<
Forecast
>
forecasts
;
};
class
Q_DECL_EXPORT
NOAAIon
:
public
IonInterface
,
public
Plasma
::
DataEngineConsumer
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment