[Gpredict-svn] SF.net SVN: gpredict:[891] trunk
Real time satellite tracking and orbit prediction
Status: Beta
Brought to you by:
csete
|
From: <aa...@us...> - 2011-08-23 10:19:29
|
Revision: 891
http://gpredict.svn.sourceforge.net/gpredict/?rev=891&view=rev
Author: aa1vs
Date: 2011-08-23 10:19:23 +0000 (Tue, 23 Aug 2011)
Log Message:
-----------
Adds Event list to modules support in satellite reload and corrects some error messages.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/gtk-sat-module.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2011-08-21 14:00:19 UTC (rev 890)
+++ trunk/ChangeLog 2011-08-23 10:19:23 UTC (rev 891)
@@ -1,6 +1,12 @@
2011-08-21 Charles Suprin <hamaa1vs at gmail.com>
* ChangeLog
+ * src/gtk-sat-module.c
+ Adds Event list to modules support in satellite reload and corrects some error messages.
+
+2011-08-21 Charles Suprin <hamaa1vs at gmail.com>
+
+ * ChangeLog
* src/tle-update.c
Eliminates memory leak and cut and paste error and removes whitespace around tle before importing.
Modified: trunk/src/gtk-sat-module.c
===================================================================
--- trunk/src/gtk-sat-module.c 2011-08-21 14:00:19 UTC (rev 890)
+++ trunk/src/gtk-sat-module.c 2011-08-23 10:19:23 UTC (rev 891)
@@ -934,7 +934,7 @@
else {
sat_log_log (SAT_LOG_LEVEL_BUG,
- _("%f:%d: Unknown child type"),
+ _("%s:%d: Unknown child type"),
__FILE__, __LINE__);
}
}
@@ -1514,11 +1514,13 @@
else if (IS_GTK_SAT_LIST (widget)) {
}
+ else if (IS_GTK_EVENT_LIST (widget)) {
+ }
else {
sat_log_log (SAT_LOG_LEVEL_BUG,
- _("%f:%d: Unknown child type"),
+ _("%s:%d: Unknown child type"),
__FILE__, __LINE__);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|