diff libgui/src/documentation-dock-widget.h @ 24011:9107bae20480

style fixes for some GUI source files * color-picker.cc, color-picker.h, documentation-dock-widget.cc, documentation-dock-widget.h, external-editor-interface.cc, external-editor-interface.h, find-files-dialog.cc, find-files-dialog.h, find-files-model.cc, find-files-model.h, history-dock-widget.cc, history-dock-widget.h, settings-dialog.cc, settings-dialog.h, terminal-dock-widget.cc, thread-manager.cc, thread-manager.h: Use m_ prefix for member variables, order functions consistently in header and source files, and follow more Octave coding conventions.
author John W. Eaton <jwe@octave.org>
date Wed, 06 Sep 2017 09:25:46 -0400
parents b2d55b52ee51
children 194eb4bd202b
line wrap: on
line diff
--- a/libgui/src/documentation-dock-widget.h	Tue Sep 05 17:24:13 2017 -0700
+++ b/libgui/src/documentation-dock-widget.h	Wed Sep 06 09:25:46 2017 -0400
@@ -39,18 +39,19 @@
 
   void notice_settings (const QSettings *settings);
 
-  void load_info_file ();
+  void load_info_file (void);
 
 protected slots:
-  void copyClipboard ();
-  void pasteClipboard ();
-  void selectAll ();
+
+  void copyClipboard (void);
+  void pasteClipboard (void);
+  void selectAll (void);
 
   void showDoc (const QString & name);
 
 private:
 
-  webinfo *_webinfo;
+  webinfo *m_webinfo;
 };
 
 #endif