From 05463aa54c3a5bd881c830177a83f468c208e74e Mon Sep 17 00:00:00 2001 From: compudj Date: Wed, 5 May 2004 00:41:18 +0000 Subject: [PATCH] viewer.h API functions name change, second commit : breaks compilation git-svn-id: http://ltt.polymtl.ca/svn@517 04897980-b3bd-0310-b5e0-8ef037075253 --- .../lttv/modules/gui/lttvwindow/lttvwindow/viewer.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ltt/branches/poly/lttv/modules/gui/lttvwindow/lttvwindow/viewer.h b/ltt/branches/poly/lttv/modules/gui/lttvwindow/lttvwindow/viewer.h index d5dd9978..bff8af47 100644 --- a/ltt/branches/poly/lttv/modules/gui/lttvwindow/lttvwindow/viewer.h +++ b/ltt/branches/poly/lttv/modules/gui/lttvwindow/lttvwindow/viewer.h @@ -386,7 +386,7 @@ void lttvwindow_viewer_unregister_dividor(MainWindow *main_win, * @param end end time of the traceset. */ -TimeInterval *lttvwindow_viewer_get_time_span(MainWindow *main_win); +const TimeInterval *lttvwindow_viewer_get_time_span(MainWindow *main_win); /** * Function to get the current time window of the current tab. @@ -394,7 +394,7 @@ TimeInterval *lttvwindow_viewer_get_time_span(MainWindow *main_win); * @param time_interval a pointer where time interval will be stored. */ -TimeWindow *lttvwindow_viewer_get_time_window(MainWindow *main_win); +const TimeWindow *lttvwindow_viewer_get_time_window(MainWindow *main_win); /** @@ -403,7 +403,7 @@ TimeWindow *lttvwindow_viewer_get_time_window(MainWindow *main_win); * @param time a pointer where time will be stored. */ -LttTime *lttvwindow_viewer_get_current_time(MainWindow *main_win); +const LttTime *lttvwindow_viewer_get_current_time(MainWindow *main_win); /** * Function to get the traceset from the current tab. @@ -411,7 +411,7 @@ LttTime *lttvwindow_viewer_get_current_time(MainWindow *main_win); * @param traceset a pointer to a traceset. */ -LttvTraceset *lttvwindow_viewer_get_traceset(MainWindow *main_win); +const LttvTraceset *lttvwindow_viewer_get_traceset(MainWindow *main_win); /** @@ -420,7 +420,7 @@ LttvTraceset *lttvwindow_viewer_get_traceset(MainWindow *main_win); * @param filter, a pointer to a filter. */ -lttv_filter *lttvwindow_viewer_get_filter(MainWindow *main_win); +const lttv_filter *lttvwindow_viewer_get_filter(MainWindow *main_win); /** -- 2.34.1