search for: _display

Displaying 5 results from an estimated 5 matches for "_display".

Did you mean: display
2007 Aug 13
0
[PATCH] Add _display when it's not a screen specific setting.
...onfig_backend.cpp index 196ed03..073da47 100644 --- a/settings-backend/kconfig_backend.cpp +++ b/settings-backend/kconfig_backend.cpp @@ -484,6 +484,8 @@ readSetting (CCSContext *c, group += "_screen"; group += QString::number (setting->screenNum); } + else + group += "_display"; cfg->setGroup (group); @@ -994,6 +996,8 @@ writeSetting (CCSContext *c, group += "_screen"; group += QString::number (setting->screenNum); } + else + group += "_display"; cfg->setGroup (group); -- 1.5.2.4 --=-JKJEo0QaMHFoQml1BvGW...
2006 Jan 19
0
Incorrect number of arguments.
...; '')) end end Can anyone tell me why is it giving me the following error? Many thanks in advance, I am sure it is something simple I am missing (The joys of being a nub!) Jeff --------------------------------------------------------------- Showing app/views/bugsheet/_display.rhtml where line #31 raised: wrong number of arguments (0 for 1) Extracted source (around line #31): 28: </div> 29: <div class="row"> 30: <span class="label"><label for="bugsheet_bs_formname">Reported By</label></span> 31...
2007 Aug 20
1
1.4.4. caller ID not working ?
...small dialplan : [testclid] exten => _0.,1,Set(CALLERID(all)=Ben Jacob <988077>) exten => _0.,n,Dial(SIP/${EXTEN}) Correct me if I am wrong, Set(CALLERID(all) above supposed to change the display name as above(Ben Jacob) and change the From URI to 988077 at myip?? As of now, only the _display name_ is being replaced, but not the name. I tried CALLERID(num) as well CALLERID(number), to the same effect(only display name being set to number). Anyone facing similar problems? Thanks in advance. - Ben EMAIL DISCLAIMER : This email and any files transmitted with it are confidential and...
2013 Jun 26
0
6.xx vesamenu and misc issues
...gt; entry text) are not seen with vesamenu.c32. In all cases, menu.c32 > works correctly and it is displayed correctly. > > This report is independent of other respective issues in 5.xx and > 6.xx. As a partial reminder: > _ ASCII24+LSS16+newline > _ LOCALBOOT > _CTRL+C > _DISPLAY FILES and Fn > _In 6.xx, CONFIG directive fails (no error messages) > > TIA, > Ady. > > The following section of this message contains a file attachment > prepared for transmission using the Internet MIME message format. > If you are using Pegasus Mail, or any other MIME-...
2006 Feb 16
1
Where to put the code? Helper or Model?
I have a class that generates an HTML calendar. It''s pretty simple, with three methods of any significance: initialize(start,end), add_event(event) and display_html Basically, the way it works is this: @events = Events.find #events in Feb 06 @cal = Calendar.new(''02/06'') @events.each {|event| cal.add_event(event)} Then in my view: <%= @cal.display_html %>