diff options
author | Eugeniy Mikhailov <evgmik@gmail.com> | 2012-09-18 17:22:01 -0400 |
---|---|---|
committer | Eugeniy Mikhailov <evgmik@gmail.com> | 2012-09-18 17:22:01 -0400 |
commit | 31e0152f4c1da624c21e6b509fd12177dd178d59 (patch) | |
tree | 660dc2b02f5ea8227308f801a82e58624fbd500c /gui_win.m | |
parent | 3b86e2ce363143b3478059d7d0e9289c8a192d5e (diff) | |
download | beam_profiler-31e0152f4c1da624c21e6b509fd12177dd178d59.tar.gz beam_profiler-31e0152f4c1da624c21e6b509fd12177dd178d59.zip |
function name typo fix
Diffstat (limited to 'gui_win.m')
-rw-r--r-- | gui_win.m | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -327,7 +327,7 @@ if get(handles.button2loadimage,'Value') set(handles.button2start,'String','STOP'); drawnow; - img=chose_and_read_image_from_file(); + img=choose_and_read_image_from_file(); if ~any(isnan(img)) image_display=double(img); image_original=image_display; @@ -544,14 +544,14 @@ function read_background_from_file_Callback(hObject, eventdata, handles) % handles structure with handles and user data (see GUIDATA) global background_m; -img=chose_and_read_image_from_file(); +img=choose_and_read_image_from_file(); if ~any(isnan(img)) background_m = double(img); draw_backround_image(handles); end -function img=chose_and_read_image_from_file() +function img=choose_and_read_image_from_file() global pathname; global default_data_path; |