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
KStars
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
31
Issues
31
List
Boards
Labels
Service Desk
Milestones
Merge Requests
5
Merge Requests
5
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
Education
KStars
Commits
ff130658
Commit
ff130658
authored
Nov 23, 2013
by
Rafal Kulaga
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a few warnings.
parent
8b194e4c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
1 deletion
+7
-1
kstars/fov.cpp
kstars/fov.cpp
+1
-1
kstars/skycomponents/supernovaecomponent.cpp
kstars/skycomponents/supernovaecomponent.cpp
+2
-0
kstars/tools/whatsinteresting/skyobjlistmodel.cpp
kstars/tools/whatsinteresting/skyobjlistmodel.cpp
+2
-0
kstars/tools/whatsinteresting/wiview.cpp
kstars/tools/whatsinteresting/wiview.cpp
+2
-0
No files found.
kstars/fov.cpp
View file @
ff130658
...
...
@@ -193,7 +193,7 @@ QList<FOV*> FOV::readFOVs()
QStringList
fields
=
istream
.
readLine
().
split
(
':'
);
bool
ok
;
QString
name
,
color
;
float
sizeX
,
sizeY
,
xoffset
,
yoffset
,
rot
,
orient
;
float
sizeX
,
sizeY
,
xoffset
,
yoffset
,
rot
;
Shape
shape
;
if
(
fields
.
count
()
==
8
)
{
...
...
kstars/skycomponents/supernovaecomponent.cpp
View file @
ff130658
...
...
@@ -236,6 +236,8 @@ void SupernovaeComponent::slotTriggerDataFileUpdate()
void
SupernovaeComponent
::
slotDataFileUpdateFinished
(
int
exitCode
,
QProcess
::
ExitStatus
exitStatus
)
{
Q_UNUSED
(
exitStatus
)
if
(
exitCode
)
{
QString
errmsg
;
switch
(
exitCode
)
{
...
...
kstars/tools/whatsinteresting/skyobjlistmodel.cpp
View file @
ff130658
...
...
@@ -31,6 +31,8 @@ void SkyObjListModel::addSkyObject(SkyObjItem *soitem)
int
SkyObjListModel
::
rowCount
(
const
QModelIndex
&
parent
)
const
{
Q_UNUSED
(
parent
)
return
m_SoItemList
.
size
();
}
...
...
kstars/tools/whatsinteresting/wiview.cpp
View file @
ff130658
...
...
@@ -88,6 +88,8 @@ void WIView::onCategorySelected(int type)
void
WIView
::
onSoListItemClicked
(
int
type
,
QString
typeName
,
int
index
)
{
Q_UNUSED
(
typeName
)
SkyObjItem
*
soitem
=
m_ModManager
->
returnModel
(
type
)
->
getSkyObjItem
(
index
);
// soTypeTextObj->setProperty("text", typeName);
...
...
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