homebrew-core/Formula/aldo.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

45 lines
1.2 KiB
Ruby

class Aldo < Formula
desc "Morse code learning tool released under GPL"
homepage "http://www.nongnu.org/aldo/"
url "http://savannah.nongnu.org/download/aldo/aldo-0.7.7.tar.bz2"
sha256 "f1b8849d09267fff3c1f5122097d90fec261291f51b1e075f37fad8f1b7d9f92"
depends_on "libao"
# Reported upstream:
# http://savannah.nongnu.org/bugs/index.php?42127
patch :DATA
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make", "install"
end
end
__END__
diff --git a/src/menu.cc b/src/menu.cc
index 483b826..092d604 100644
--- a/src/menu.cc
+++ b/src/menu.cc
@@ -112,20 +112,17 @@ void Menu::add_item(id_type id, std::string c, Function2 f)
void Menu::add_item_at(unsigned int pos, id_type id, std::string c, Function1 f)
{
- IT it(&m_its[pos]);
- m_its.insert(it, Item(id,c,f) );
+ m_its.insert(m_its.begin()+pos, Item(id,c,f) );
}
void Menu::add_item_at(unsigned int pos, id_type id, std::string c, Function2 f)
{
- IT it(&m_its[pos]);
- m_its.insert(it, Item(id,c,f) );
+ m_its.insert(m_its.begin()+pos, Item(id,c,f) );
}
void Menu::delete_item_at(unsigned int pos)
{
- IT it(&m_its[pos]);
- m_its.erase(it);
+ m_its.erase(m_its.begin()+pos);
}