summaryrefslogtreecommitdiffstats
path: root/kstars/kstars/indi
diff options
context:
space:
mode:
Diffstat (limited to 'kstars/kstars/indi')
-rw-r--r--kstars/kstars/indi/apmount.cpp2
-rw-r--r--kstars/kstars/indi/apogee/ApnCamera.cpp2
-rw-r--r--kstars/kstars/indi/apogee/Camera_Example.cpp2
-rw-r--r--kstars/kstars/indi/apogee_ppi.cpp26
-rw-r--r--kstars/kstars/indi/lilxml.c2
-rw-r--r--kstars/kstars/indi/lx200driver.c2
-rw-r--r--kstars/kstars/indi/lx200generic.cpp4
-rw-r--r--kstars/kstars/indi/webcam/ccvt_c2.c2
8 files changed, 21 insertions, 21 deletions
diff --git a/kstars/kstars/indi/apmount.cpp b/kstars/kstars/indi/apmount.cpp
index 4edae7c4..273a7b16 100644
--- a/kstars/kstars/indi/apmount.cpp
+++ b/kstars/kstars/indi/apmount.cpp
@@ -731,7 +731,7 @@ void APMount::ISNewSwitch (const char *dev, const char *name, ISState *states, c
if ( ( err = setAlignmentMode(index) < 0) )
{
- handleError(&AlignmentSP, err, "Setting tqalignment");
+ handleError(&AlignmentSP, err, "Setting alignment");
return;
}
diff --git a/kstars/kstars/indi/apogee/ApnCamera.cpp b/kstars/kstars/indi/apogee/ApnCamera.cpp
index 946c444c..457722b5 100644
--- a/kstars/kstars/indi/apogee/ApnCamera.cpp
+++ b/kstars/kstars/indi/apogee/ApnCamera.cpp
@@ -128,7 +128,7 @@ bool CApnCamera::Expose( double Duration, bool Light )
PostRoiRows = 1;
}
- // Set up the tqgeometry for a full frame device
+ // Set up the geometry for a full frame device
if ( m_ApnSensorInfo->m_EnableSingleRowOffset )
{
PreRoiVBinning += PreRoiRows;
diff --git a/kstars/kstars/indi/apogee/Camera_Example.cpp b/kstars/kstars/indi/apogee/Camera_Example.cpp
index 51831ecc..f1f64121 100644
--- a/kstars/kstars/indi/apogee/Camera_Example.cpp
+++ b/kstars/kstars/indi/apogee/Camera_Example.cpp
@@ -295,7 +295,7 @@ long config_load( char* cfgname, short BaseAddress, short RegOffset )
}
/////////////////////////////////////////////////////////////////////////////////
- // Necessary tqgeometry settings
+ // Necessary geometry settings
if (CfgGet (inifp, "geometry", "rows", retbuf, sizeof(retbuf), &plen))
{
diff --git a/kstars/kstars/indi/apogee_ppi.cpp b/kstars/kstars/indi/apogee_ppi.cpp
index 38c909b2..adcc34c9 100644
--- a/kstars/kstars/indi/apogee_ppi.cpp
+++ b/kstars/kstars/indi/apogee_ppi.cpp
@@ -891,7 +891,7 @@ bool ApogeeCam::initCamera()
{
LilXML *XMLParser = newLilXML();
XMLEle *root = NULL, *camera = NULL, *ele = NULL;
- XMLEle *system = NULL, *tqgeometry = NULL, *temp = NULL, *ccd = NULL;
+ XMLEle *system = NULL, *geometry = NULL, *temp = NULL, *ccd = NULL;
XMLAtt *ap;
FILE *spFile = NULL;
char errmsg[1024];
@@ -948,7 +948,7 @@ bool ApogeeCam::initCamera()
// Let's get the subsections now
system = findXMLEle(camera, "System");
- tqgeometry = findXMLEle(camera, "Geometry");
+ geometry = findXMLEle(camera, "Geometry");
temp = findXMLEle(camera, "Temp");
ccd = findXMLEle(camera, "CCD");
@@ -960,7 +960,7 @@ bool ApogeeCam::initCamera()
return false;
}
- if (tqgeometry == NULL)
+ if (geometry == NULL)
{
IDLog("Error: Unable to find Geometry element in camera.\n");
IDMessage(mydev, "Error: Unable to find Geometry element in camera.");
@@ -1000,7 +1000,7 @@ bool ApogeeCam::initCamera()
bAddr = hextoi(valuXMLAtt(findXMLAtt(system, "Base"))) & 0xFFF;
// Rows
- ap = findXMLAtt(tqgeometry, "Rows");
+ ap = findXMLAtt(geometry, "Rows");
if (!ap)
{
IDLog("Error: Unable to find attribute Rows.\n");
@@ -1012,7 +1012,7 @@ bool ApogeeCam::initCamera()
cam->m_Rows = hextoi(valuXMLAtt(ap));
// Columns
- ap = findXMLAtt(tqgeometry, "Columns");
+ ap = findXMLAtt(geometry, "Columns");
if (!ap)
{
IDLog("Error: Unable to find attribute Columns.\n");
@@ -1210,7 +1210,7 @@ bool ApogeeCam::initCamera()
}
// BIC
- ele = findXMLEle(tqgeometry, "BIC");
+ ele = findXMLEle(geometry, "BIC");
if (ele)
{
val = hextoi(pcdataXMLEle(ele));
@@ -1219,7 +1219,7 @@ bool ApogeeCam::initCamera()
}
// BIR
- ele = findXMLEle(tqgeometry, "BIR");
+ ele = findXMLEle(geometry, "BIR");
if (ele)
{
val = hextoi(pcdataXMLEle(ele));
@@ -1228,7 +1228,7 @@ bool ApogeeCam::initCamera()
}
// SKIPC
- ele = findXMLEle(tqgeometry, "SKIPC");
+ ele = findXMLEle(geometry, "SKIPC");
if (ele)
{
val = hextoi(pcdataXMLEle(ele));
@@ -1237,7 +1237,7 @@ bool ApogeeCam::initCamera()
}
// SKIPR
- ele = findXMLEle(tqgeometry, "SKIPR");
+ ele = findXMLEle(geometry, "SKIPR");
if (ele)
{
val = hextoi(pcdataXMLEle(ele));
@@ -1246,7 +1246,7 @@ bool ApogeeCam::initCamera()
}
// IMG COlS
- ele = findXMLEle(tqgeometry, "ImgCols");
+ ele = findXMLEle(geometry, "ImgCols");
if (ele)
{
val = hextoi(pcdataXMLEle(ele));
@@ -1257,7 +1257,7 @@ bool ApogeeCam::initCamera()
cam->m_ImgColumns = cam->m_Columns - cam->m_BIC - cam->m_SkipC;
// IMG ROWS
- ele = findXMLEle(tqgeometry, "ImgRows");
+ ele = findXMLEle(geometry, "ImgRows");
if (ele)
{
val = hextoi(pcdataXMLEle(ele));
@@ -1268,7 +1268,7 @@ bool ApogeeCam::initCamera()
cam->m_ImgRows = cam->m_Rows - cam->m_BIR - cam->m_SkipR;
// Hor Flush
- ele = findXMLEle(tqgeometry, "HFlush");
+ ele = findXMLEle(geometry, "HFlush");
if (ele)
{
val = hextoi(pcdataXMLEle(ele));
@@ -1277,7 +1277,7 @@ bool ApogeeCam::initCamera()
}
// Ver Flush
- ele = findXMLEle(tqgeometry, "VFlush");
+ ele = findXMLEle(geometry, "VFlush");
if (ele)
{
val = hextoi(pcdataXMLEle(ele));
diff --git a/kstars/kstars/indi/lilxml.c b/kstars/kstars/indi/lilxml.c
index 2a687bd4..c8344b5e 100644
--- a/kstars/kstars/indi/lilxml.c
+++ b/kstars/kstars/indi/lilxml.c
@@ -130,7 +130,7 @@ delLilXML (LilXML *lp)
freemem (lp);
}
-/* delete ep and all its tqchildren */
+/* delete ep and all its children */
void
delXMLEle (XMLEle *ep)
{
diff --git a/kstars/kstars/indi/lx200driver.c b/kstars/kstars/indi/lx200driver.c
index 45eef056..9c521cfe 100644
--- a/kstars/kstars/indi/lx200driver.c
+++ b/kstars/kstars/indi/lx200driver.c
@@ -728,7 +728,7 @@ int setCommandXYZ(int x, int y, int z, const char *cmd)
int setAlignmentMode(unsigned int alignMode)
{
- fprintf(stderr , "Set tqalignment mode %d\n", alignMode);
+ fprintf(stderr , "Set alignment mode %d\n", alignMode);
switch (alignMode)
{
diff --git a/kstars/kstars/indi/lx200generic.cpp b/kstars/kstars/indi/lx200generic.cpp
index 975641fd..8915b612 100644
--- a/kstars/kstars/indi/lx200generic.cpp
+++ b/kstars/kstars/indi/lx200generic.cpp
@@ -909,7 +909,7 @@ void LX200Generic::ISNewSwitch (const char *dev, const char *name, ISState *stat
if ( ( err = setAlignmentMode(index) < 0) )
{
- handleError(&AlignmentSw, err, "Setting tqalignment");
+ handleError(&AlignmentSw, err, "Setting alignment");
return;
}
@@ -1790,7 +1790,7 @@ void LX200Generic::getAlignment()
signed char align = ACK();
if (align < 0)
{
- IDSetSwitch (&AlignmentSw, "Failed to get telescope tqalignment.");
+ IDSetSwitch (&AlignmentSw, "Failed to get telescope alignment.");
return;
}
diff --git a/kstars/kstars/indi/webcam/ccvt_c2.c b/kstars/kstars/indi/webcam/ccvt_c2.c
index 1fb7bcbf..52ed276d 100644
--- a/kstars/kstars/indi/webcam/ccvt_c2.c
+++ b/kstars/kstars/indi/webcam/ccvt_c2.c
@@ -8,7 +8,7 @@
#include "ccvt_types.h"
/* by suitable definition of PIXTYPE, can do yuv to rgb or bgr, with or
-without word tqalignment */
+without word alignment */
/* This doesn't exactly earn a prize in a programming beauty contest. */