Update FSF address
[lttv.git] / lttv / modules / gui / lttvwindow / lttvwindow / timebar.c
index 9673ec669a97c551f9054f2cd2eaeebfe48f8bd3..dabdb7cfffae5d268672430f21c7bb35dcf49b43 100644 (file)
@@ -12,8 +12,8 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
- * MA 02111-1307, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
  */
 #include "timebar.h"
 
@@ -21,7 +21,7 @@
 
 #include <gtk/gtkeventbox.h>
 #include <gtk/gtkvseparator.h>
-#include <ltt/time.h>
+#include <lttv/time.h>
 
 enum {
        SIGNAL_START_TIME_CHANGED,
@@ -242,15 +242,9 @@ void timebar_set_minmax_time(Timebar *timebar,
                ) {
                return;
        }
-
-       if (min_time != NULL) {
-               timebar->min_time = *min_time;
-       }
-
-       if (max_time != NULL) {
-               timebar->max_time = *max_time;
-       }
-
+       /* null-checked already */
+       timebar->min_time = *min_time;
+       timebar->max_time = *max_time;
 
        if (ltt_time_compare(timebar->min_time, timebar->max_time) == 0) {
 
This page took 0.023069 seconds and 4 git commands to generate.