comparison libgui/src/m-editor/file-editor-tab.h @ 27893:465ac679e976

Fix typos and grammar errors in comments in libgui (patch #9790) * color-picker.cc, documentation.cc, dw-main-window.cc, files-dock-widget.cc, gui-preferences-mw.h, history-dock-widget.h, file-editor-tab.cc, file-editor-tab.h, file-editor.cc, find-dialog.cc, octave-qscintilla.cc, main-window.cc, octave-dock-widget.cc, octave-dock-widget.h, resource-manager.cc, shortcut-manager.cc, tab-bar.cc, tab-bar.h, variable-editor.cc, variable-editor.h, workspace-model.cc, workspace-view.cc: Fix typos and grammar errors in comments.
author Andrew Janke <andrew@apjanke.net>
date Thu, 11 Apr 2019 07:37:20 -0400
parents 5169ed0ff0f0
children b442ec6dda5c
comparison
equal deleted inserted replaced
27892:77320d48b33e 27893:465ac679e976
114 void confirm_dbquit_and_save_signal (const QString& file_to_save, 114 void confirm_dbquit_and_save_signal (const QString& file_to_save,
115 const QString& base_name, 115 const QString& base_name,
116 bool remove_on_success, 116 bool remove_on_success,
117 bool restore_breakpoints); 117 bool restore_breakpoints);
118 118
119 // FIXME: The following is similar to "process_octave_code" 119 // FIXME: The following is similar to "process_octave_code" signal.
120 // signal. However, currently that signal is connected to 120 // However, currently that signal is connected to something that simply
121 // something that simply focuses a window and not actually 121 // focuses a window and does not actually communicate with Octave.
122 // communicate with Octave.
123 // 122 //
124 // void evaluate_octave_command (const QString& command); 123 // void evaluate_octave_command (const QString& command);
125 124
126 public slots: 125 public slots:
127 126
215 void handle_save_file_as_answer (const QString& fileName); 214 void handle_save_file_as_answer (const QString& fileName);
216 void handle_save_file_as_answer_close (const QString& fileName); 215 void handle_save_file_as_answer_close (const QString& fileName);
217 void handle_save_file_as_answer_cancel (void); 216 void handle_save_file_as_answer_cancel (void);
218 void handle_save_as_filter_selected (const QString& filter); 217 void handle_save_as_filter_selected (const QString& filter);
219 218
220 // When user changes encoding after decoding errors where found 219 // When user changes encoding after decoding errors were found
221 void handle_current_enc_changed (const QString& enc); 220 void handle_current_enc_changed (const QString& enc);
222 221
223 // When apis preparation has finished and is ready to save 222 // When apis preparation has finished and is ready to save
224 void save_apis_info (void); 223 void save_apis_info (void);
225 224