Re: [bme-develop] emoticon code in cvs
Status: Planning
Brought to you by:
sirmik
|
From: Daniel G. <al7...@ma...> - 2004-04-03 22:11:53
|
> Well guys, > > I uploaded some emoticon code into cvs, at least I hope I did :S > > This is what I get: > > ? src/UserInterface/StringTokenizer.h > ? src/UserInterface/StringTokenizer.cpp > ? src/UserInterface/IconManager.h > ? src/UserInterface/IconManager.cpp > ? src/UserInterface/IconLoader.h > ? src/UserInterface/IconLoader.cpp > ? src/UserInterface/IconHandler.h > ? src/UserInterface/IconHandler.cpp > ? src/UserInterface/Emoticon.h > ? Bme.cs > ? Bme > ? (Objects.Bme) > Checking in Bme.proj; > /cvsroot/bme/Bme/Bme.proj,v <-- Bme.proj > new revision: 1.4; previous revision: 1.3 > done > Checking in icons/iconprefs.txt; > /cvsroot/bme/Bme/icons/iconprefs.txt,v <-- iconprefs.txt > new revision: 1.2; previous revision: 1.1 > done > Checking in src/constants.h; > /cvsroot/bme/Bme/src/constants.h,v <-- constants.h > new revision: 1.2; previous revision: 1.1 > done > cvs [commit aborted]: received interrupt signal > You only commited Bme.proj, iconprefs.txt and constats.h If you wanted to commit the StringTokenizer an IconManger code you first have to add to the repository and the do the commit. > it isn't finished yet...but I working on it...I hope I will get it > working > by the end of next week....btw anyone now, how to pass a comparison > function > to BList's SortItems? > Look into the MsnList class, there is something for sorting the BOutlineList. It would be something like this to sort a list. static int cmpListItem(void*,void*); //It has to be static. int (*ptrSort) (void*,void*); ptrSort = cmpListItem; ... list- >SortItems(ptrSort); Daniel |