Ticket #2044: 0001-Fixed-base-Base-spelling-inconsistency.patch

File 0001-Fixed-base-Base-spelling-inconsistency.patch, 1.3 KB (added by walter, 14 years ago)
  • sound_toolbar.py

    From 86b3628ac36e728de0877e780656f401cfc472f5 Mon Sep 17 00:00:00 2001
    From: Peter Froehlich <peter.hans.froehlich@gmail.com>
    Date: Wed, 9 Jun 2010 07:39:48 -0400
    Subject: [PATCH] Fixed base->Base spelling inconsistency.
    
    ---
     sound_toolbar.py |    4 ++--
     1 files changed, 2 insertions(+), 2 deletions(-)
    
    diff --git a/sound_toolbar.py b/sound_toolbar.py
    index 39925db..46892f0 100644
    a b class SoundToolbar(gtk.Toolbar): 
    7171        ###################### time ########################
    7272        self._time = ToolButton('domain-time2')
    7373        self.insert(self._time, -1)
    74         self._time.set_tooltip(_('Time base'))
     74        self._time.set_tooltip(_('Time Base'))
    7575        self._time.connect('clicked', self._timefreq_control_cb, True)
    7676        ####################################################
    7777
    class SoundToolbar(gtk.Toolbar): 
    7979        self._freq = ToolButton('domain-freq')
    8080        self.insert(self._freq, -1)
    8181        self._freq.show()
    82         self._freq.set_tooltip(_('Frequency base'))
     82        self._freq.set_tooltip(_('Frequency Base'))
    8383        self._freq.connect('clicked', self._timefreq_control_cb, False)
    8484        ####################################################
    8585