Remove obsolete code

git-svn-id: file:///home/vcs/svn/jsweeper/trunk@30 6611ac79-6612-48ef-a1e9-b906f853523e
master
petern 2009-12-03 11:03:04 +00:00
parent dd1c69bf61
commit 030a2365e6
2 changed files with 0 additions and 19 deletions

View File

@ -14,8 +14,6 @@ int main(int argc, char **argv)
cfg.Read();
// pm.AliasLoad("hurr.jsa");
jack.Connect();
g = Gui::Open();

View File

@ -417,20 +417,3 @@ void PortManager::AliasAdd(std::string source, std::string target)
m_aliases.push_back(Alias(source, target));
}
/*
void PortManager::AliasLoad(std::string filename)
{
std::ifstream file;
file.open(filename.c_str());
if (!file) return;
char line[1024];
while (file.getline(line, sizeof line)) {
std::istringstream iss(line);
Alias a;
iss >> a.name;
iss >> a.alias;
m_aliases.push_back(a);
}
}
*/