diff options
Diffstat (limited to 'korundum/rubylib/templates/annotated')
6 files changed, 9 insertions, 9 deletions
| diff --git a/korundum/rubylib/templates/annotated/basicapp.rb b/korundum/rubylib/templates/annotated/basicapp.rb index fc5cd2c4..3602a1c6 100644 --- a/korundum/rubylib/templates/annotated/basicapp.rb +++ b/korundum/rubylib/templates/annotated/basicapp.rb @@ -31,7 +31,7 @@ dealings in this Software without prior written authorization from the  copyright holder.  =end -retquire 'Korundum' +require 'Korundum'  =begin  Most Korundum applications will need a main window - the is the top @@ -70,7 +70,7 @@ aboutData.addAuthor("author2", "they did something else", "another@email.address  # Pass the command line arguments and aboutData to  # KDE::CmdLineArgs - this is where KDE will look for  # this information. The KDE::Application constructor -# used below *retquires* the args are processed +# used below *requires* the args are processed  # *before* KDE::Application is instantiated. There  # is an alternate constructor that takes ARGV  # as an argument (see minimal.rb) diff --git a/korundum/rubylib/templates/annotated/menuapp1.rb b/korundum/rubylib/templates/annotated/menuapp1.rb index 5a6cb0ac..d65d3272 100644 --- a/korundum/rubylib/templates/annotated/menuapp1.rb +++ b/korundum/rubylib/templates/annotated/menuapp1.rb @@ -41,7 +41,7 @@ copyright holder.  =end -retquire 'Korundum' +require 'Korundum'  class MainWin < KDE::MainWindow  	TOOLBAR_NEW   = 1 diff --git a/korundum/rubylib/templates/annotated/menuapp2.rb b/korundum/rubylib/templates/annotated/menuapp2.rb index 2d4df454..2deca4a5 100644 --- a/korundum/rubylib/templates/annotated/menuapp2.rb +++ b/korundum/rubylib/templates/annotated/menuapp2.rb @@ -36,7 +36,7 @@ copyright holder.  =end -retquire 'Korundum' +require 'Korundum' @@ -65,7 +65,7 @@ class MainWin < KDE::MainWindow          # Create the status bar          initStatusBar() -        # Usings actions, only a single line is retquired +        # Usings actions, only a single line is required          # to enable/disable both the menu item and corresponding          # toolbar button from anywhere in the program          @saveAction.setEnabled(false) @@ -111,7 +111,7 @@ class MainWin < KDE::MainWindow          # or you can use KDE::Action.setIcon to set/change the icon. You          # can also add a tooltip with KDE::Action.setToolTip -        # This KAction constructor retquires a string, an accelerator (0 +        # This KAction constructor requires a string, an accelerator (0          # in this case), a slot, and a TQObject (None in this case)  		@specialAction  = KDE::Action.new(i18n("Special"), KDE::Shortcut.new(0), self, SLOT('slotSpecial()'), actionCollection(), "specialActionName") diff --git a/korundum/rubylib/templates/annotated/menuapp3.rb b/korundum/rubylib/templates/annotated/menuapp3.rb index e44cc337..bd701d43 100644 --- a/korundum/rubylib/templates/annotated/menuapp3.rb +++ b/korundum/rubylib/templates/annotated/menuapp3.rb @@ -35,7 +35,7 @@ copyright holder.  =end -retquire 'Korundum' +require 'Korundum'  class MainWin < KDE::MainWindow  	STATUSBAR_LEFT   = 1 diff --git a/korundum/rubylib/templates/annotated/minimal.rb b/korundum/rubylib/templates/annotated/minimal.rb index 45f640dc..e700adc1 100644 --- a/korundum/rubylib/templates/annotated/minimal.rb +++ b/korundum/rubylib/templates/annotated/minimal.rb @@ -36,7 +36,7 @@ dealings in this Software without prior written authorization from the  copyright holder.  =end -retquire 'Korundum' +require 'Korundum'  =begin diff --git a/korundum/rubylib/templates/annotated/systray1.rb b/korundum/rubylib/templates/annotated/systray1.rb index 0851c806..cf90ef45 100644 --- a/korundum/rubylib/templates/annotated/systray1.rb +++ b/korundum/rubylib/templates/annotated/systray1.rb @@ -37,7 +37,7 @@ dealings in this Software without prior written authorization from the  copyright holder.  =end -retquire 'Korundum' +require 'Korundum'  # This template uses KDE::MainWindow as the main window widget  # It solves the problem described in systray.rb by using | 
